2021-03-02 02:13:17 +00:00
|
|
|
// Project64 - A Nintendo 64 emulator
|
|
|
|
// http://www.pj64-emu.com/
|
|
|
|
// Copyright(C) 2001-2021 Project64
|
|
|
|
// Copyright(C) 2007 Hiroshi Morii
|
|
|
|
// Copyright(C) 2003 Rice1964
|
|
|
|
// GNU/GPLv2 licensed: https://gnu.org/licenses/gpl-2.0.html
|
2013-04-17 10:30:38 +00:00
|
|
|
|
|
|
|
#ifndef __TXRESAMPLE_H__
|
|
|
|
#define __TXRESAMPLE_H__
|
|
|
|
|
|
|
|
#include "TxInternal.h"
|
|
|
|
|
|
|
|
class TxReSample
|
|
|
|
{
|
|
|
|
private:
|
2017-04-26 10:23:36 +00:00
|
|
|
double tent(double x);
|
|
|
|
double gaussian(double x);
|
|
|
|
double sinc(double x);
|
|
|
|
double lanczos3(double x);
|
|
|
|
double mitchell(double x);
|
|
|
|
double besselI0(double x);
|
|
|
|
double kaiser(double x);
|
2013-04-17 10:30:38 +00:00
|
|
|
public:
|
2017-04-26 10:23:36 +00:00
|
|
|
bool minify(uint8 **src, int *width, int *height, int ratio);
|
|
|
|
bool nextPow2(uint8** image, int* width, int* height, int bpp, bool use_3dfx);
|
|
|
|
int nextPow2(int num);
|
2013-04-17 10:30:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __TXRESAMPLE_H__ */
|