/**************************************************************************** * Snes9x 1.51 Nintendo Wii/Gamecube Port * * Michniewski 2008 * * filter.h * * Filters Header File ****************************************************************************/ #ifndef _FILTER_H_ #define _FILTER_H_ #include #include #include #include #include #include #include #include "snes9x.h" enum RenderFilter{ FILTER_NONE = 0, FILTER_HQ2X, FILTER_HQ2XS, FILTER_HQ2XBOLD, NUM_FILTERS }; #define EXT_WIDTH (MAX_SNES_WIDTH + 4) #define EXT_PITCH (EXT_WIDTH * 2) #define EXT_HEIGHT (MAX_SNES_HEIGHT + 4) // Offset into buffer to allow a two pixel border around the whole rendered // SNES image. This is a speed up hack to allow some of the image processing // routines to access black pixel data outside the normal bounds of the buffer. #define EXT_OFFSET (EXT_PITCH * 2 + 2 * 2) typedef void (*TFilterMethod)(uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uint32 dstPitch, int width, int height); extern TFilterMethod FilterMethod; extern TFilterMethod FilterMethodHiRes; extern unsigned char filtermem[]; // // Prototypes // void SelectFilterMethod (); void RenderPlain (uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uint32 dstPitch, int width, int height); void SelectFilterMethod (); TFilterMethod FilterToMethod (RenderFilter filterID); const char* GetFilterName (RenderFilter filterID); bool GetFilterHiResSupport (RenderFilter filterID); int GetFilterScale(RenderFilter filterID); template void RenderHQ2X (uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uint32 dstPitch, int width, int height); void InitLUTs(); #endif