tahoma2d/toonz/sources/common/trop/quickputP.h
2016-05-17 00:04:11 +09:00

26 lines
805 B
C

#pragma once
#ifndef QUICKPUT_P_INCLUDED
#define QUICKPUT_P_INCLUDED
#include "trop.h"
void quickPut(const TRasterP &dn, const TRasterP &up,
const TAffine &aff, TRop::ResampleFilterType filterType,
const TPixel32 &colorScale = TPixel32::Black, bool doPremultiply = false, bool whiteTransp = false, bool firstColumn = false,
bool doRasterDarkenBlendedView = false);
void quickResample(const TRasterP &dn, const TRasterP &up,
const TAffine &aff, TRop::ResampleFilterType filterType);
void quickPutCmapped(const TRasterP &out,
const TRasterCM32P &up, const TPaletteP &plt,
const TAffine &aff);
#ifdef __LP64__
void quickResample_optimized(const TRasterP &dn, const TRasterP &up,
const TAffine &aff,
TRop::ResampleFilterType filterType);
#endif
#endif