1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-02 09:03:37 +00:00
GLideN64/src/GLideNHQ/TxUtil.h

80 lines
2.4 KiB
C
Raw Normal View History

2014-11-13 14:52:55 +00:00
/*
* Texture Filtering
* Version: 1.0
*
* Copyright (C) 2007 Hiroshi Morii All Rights Reserved.
* Email koolsmoky(at)users.sourceforge.net
* Web http://www.3dfxzone.it/koolsmoky
*
* this is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* this is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNU Make; see the file COPYING. If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef __TXUTIL_H__
#define __TXUTIL_H__
/* maximum number of CPU cores allowed */
#define MAX_NUMCORE 8
#include "TxInternal.h"
/* extension for cache files */
#define TEXCACHE_EXT wst("htc")
2019-05-23 12:44:28 +00:00
#define TEXSTREAM_EXT wst("hts")
2014-11-13 14:52:55 +00:00
#include <vector>
2014-11-13 14:52:55 +00:00
class TxUtil
{
private:
static uint32 RiceCRC32(const uint8* src, int width, int height, int size, int rowStride);
static boolean RiceCRC32_CI4(const uint8* src, int width, int height, int rowStride,
uint32* crc32, uint32* cimax);
static boolean RiceCRC32_CI8(const uint8* src, int width, int height, int rowStride,
uint32* crc32, uint32* cimax);
2014-11-13 14:52:55 +00:00
public:
static int sizeofTx(int width, int height, ColorFormat format);
static uint32 checksumTx(uint8 *data, int width, int height, ColorFormat format);
2014-11-13 14:52:55 +00:00
#if 0 /* unused */
static uint32 chkAlpha(uint32* src, int width, int height);
2014-11-13 14:52:55 +00:00
#endif
static uint32 checksum(uint8 *src, int width, int height, int size, int rowStride);
static uint64 checksum64(uint8 *src, int width, int height, int size, int rowStride, uint8 *palette);
static uint32 getNumberofProcessors();
2014-11-13 14:52:55 +00:00
};
class TxMemBuf
{
private:
uint8 *_tex[2];
uint32 _size[2];
2016-12-15 16:14:18 +00:00
std::vector< std::vector<uint32> > _bufs;
TxMemBuf();
2014-11-13 14:52:55 +00:00
public:
static TxMemBuf* getInstance() {
static TxMemBuf txMemBuf;
return &txMemBuf;
}
~TxMemBuf();
boolean init(int maxwidth, int maxheight);
void shutdown();
uint8 *get(uint32 num);
uint32 size_of(uint32 num);
uint32 *getThreadBuf(uint32 threadIdx, uint32 num, uint32 size);
2014-11-13 14:52:55 +00:00
};
void setTextureFormat(ColorFormat internalFormat, GHQTexInfo * info);
2014-11-13 14:52:55 +00:00
#endif /* __TXUTIL_H__ */