2014-11-22 12:32:56 +00:00
|
|
|
#ifndef texcache_h_
|
|
|
|
# define texcache_h_
|
2013-05-15 02:17:17 +00:00
|
|
|
|
2019-03-01 08:51:50 +00:00
|
|
|
#include "vfs.h"
|
|
|
|
|
2013-05-15 02:17:17 +00:00
|
|
|
#ifdef USE_OPENGL
|
|
|
|
|
|
|
|
#define GLTEXCACHEADSIZ 8192
|
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
typedef struct {
|
|
|
|
pthtyp *list[GLTEXCACHEADSIZ];
|
2017-06-27 02:24:34 +00:00
|
|
|
|
2013-05-17 03:42:37 +00:00
|
|
|
} globaltexcache;
|
|
|
|
|
|
|
|
extern globaltexcache texcache;
|
|
|
|
|
2013-05-15 02:18:27 +00:00
|
|
|
extern pthtyp *texcache_fetch(int32_t dapicnum, int32_t dapalnum, int32_t dashade, int32_t dameth);
|
2013-05-15 02:17:17 +00:00
|
|
|
|
|
|
|
#endif
|
2014-11-26 04:39:23 +00:00
|
|
|
|
2014-05-30 00:02:19 +00:00
|
|
|
#endif
|