mirror of https://github.com/snes9xgit/snes9x.git
17 lines
668 B
C
17 lines
668 B
C
/*****************************************************************************\
|
|
Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
|
|
This file is licensed under the Snes9x License.
|
|
For further information, consult the LICENSE file in the root directory.
|
|
\*****************************************************************************/
|
|
|
|
#ifndef _hq2x_h_
|
|
#define _hq2x_h_
|
|
|
|
bool8 S9xBlitHQ2xFilterInit (void);
|
|
void S9xBlitHQ2xFilterDeinit (void);
|
|
void HQ2X_16 (uint8 *, uint32, uint8 *, uint32, int, int);
|
|
void HQ3X_16 (uint8 *, uint32, uint8 *, uint32, int, int);
|
|
void HQ4X_16 (uint8 *, uint32, uint8 *, uint32, int, int);
|
|
|
|
#endif
|