Path: blob/master/libmupen64plus/mupen64plus-video-glide64mk2/src/GlideHQ/TxTexCache.h
2 views
/*1* Texture Filtering2* Version: 1.03*4* Copyright (C) 2007 Hiroshi Morii All Rights Reserved.5* Email koolsmoky(at)users.sourceforge.net6* Web http://www.3dfxzone.it/koolsmoky7*8* this is free software; you can redistribute it and/or modify9* it under the terms of the GNU General Public License as published by10* the Free Software Foundation; either version 2, or (at your option)11* any later version.12*13* this is distributed in the hope that it will be useful,14* but WITHOUT ANY WARRANTY; without even the implied warranty of15* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the16* GNU General Public License for more details.17*18* You should have received a copy of the GNU General Public License19* along with GNU Make; see the file COPYING. If not, write to20* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.21*/2223#ifndef __TXTEXCACHE_H__24#define __TXTEXCACHE_H__2526#include "TxCache.h"2728class TxTexCache : public TxCache29{30public:31~TxTexCache();32TxTexCache(int options, int cachesize, const wchar_t *datapath,33const wchar_t *cachepath, const wchar_t *ident,34dispInfoFuncExt callback);35boolean add(uint64 checksum, /* checksum hi:palette low:texture */36GHQTexInfo *info);37};3839#endif /* __TXTEXCACHE_H__ */404142