summaryrefslogtreecommitdiffstats
path: root/src/render/TexList.h
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-04-09 09:06:30 +0200
committerSergeanur <s.anureev@yandex.ua>2020-04-09 09:28:50 +0200
commitfd2152923c514d58226f2356ba4b8f43de02dccf (patch)
treeeb8525db2da1274a4a5c5955cacd4d9b0684af94 /src/render/TexList.h
parentfix bug (diff)
downloadre3-fd2152923c514d58226f2356ba4b8f43de02dccf.tar
re3-fd2152923c514d58226f2356ba4b8f43de02dccf.tar.gz
re3-fd2152923c514d58226f2356ba4b8f43de02dccf.tar.bz2
re3-fd2152923c514d58226f2356ba4b8f43de02dccf.tar.lz
re3-fd2152923c514d58226f2356ba4b8f43de02dccf.tar.xz
re3-fd2152923c514d58226f2356ba4b8f43de02dccf.tar.zst
re3-fd2152923c514d58226f2356ba4b8f43de02dccf.zip
Diffstat (limited to '')
-rw-r--r--src/render/TexList.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/render/TexList.h b/src/render/TexList.h
new file mode 100644
index 00000000..c6618fba
--- /dev/null
+++ b/src/render/TexList.h
@@ -0,0 +1,14 @@
+#pragma once
+
+class CTexList
+{
+ enum { MAX_TEXUSED = 400, };
+ static bool ms_nTexUsed[MAX_TEXUSED];
+public:
+ static void Initialise();
+ static void Shutdown();
+ static RwTexture *SetTexture(int32 slot, char *name);
+ static int32 GetFirstFreeTexture();
+ static RwTexture *LoadFileNameTexture(char *name);
+ static void LoadGlobalTextureList();
+}; \ No newline at end of file