SDL'ified hq4x filter. (Doesn't work right yet)

This commit is contained in:
William Kendrick 2003-12-20 19:45:38 +00:00
parent a6427c94ee
commit 7f9fb79d9f
6 changed files with 3705 additions and 3434 deletions

View file

@ -1 +1,9 @@
void hq4x_32( unsigned char * pIn, unsigned char * pOut, int Xres, int Yres, int BpL, int LUT16to32[65536], int RGBtoYUV[65536] );
#ifndef HQ4X_H
#define HQ4X_H
#include "SDL.h"
void hq4x_32(SDL_Surface * src, SDL_Surface * dest,
int LUT16to32[65536], int RGBtoYUV[65536]);
#endif