snes9xgx/source/filter.h
bladeoner 97dbf6caa0
Added Scale2x video filter and rename Scanlines filter (thanks Tanooki16!) (#979)
- Added the Scale2x video filter
- Rename the Scanlines filter to TV Mode
2021-11-25 13:33:45 -07:00

56 lines
1.4 KiB
C

/****************************************************************************
* Snes9x Nintendo Wii/Gamecube Port
*
* Michniewski 2008
*
* filter.h
*
* Filters Header File
****************************************************************************/
#ifndef _FILTER_H_
#define _FILTER_H_
#include <gccore.h>
#include <ogcsys.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include "snes9x/snes9x.h"
enum RenderFilter{
FILTER_NONE = 0,
FILTER_HQ2X,
FILTER_HQ2XS,
FILTER_HQ2XBOLD,
FILTER_SCALE2X,
FILTER_TVMODE,
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 unsigned char * filtermem;
void SelectFilterMethod ();
const char* GetFilterName (RenderFilter filterID);
int GetFilterScale(RenderFilter filterID);
void InitLUTs();
#endif