summaryrefslogtreecommitdiff
path: root/src/texture.h
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2011-02-10 02:13:03 +0200
committerPerttu Ahola <celeron55@gmail.com>2011-02-10 02:13:03 +0200
commit1704badc306fc8c7c6609aff9f809aee3ac00d3a (patch)
tree76e1ba37bb0ec12bb744a6015f56613ba088e148 /src/texture.h
parent949383a2f7c0707667f76615fc748ff4879e2cc1 (diff)
downloadminetest-1704badc306fc8c7c6609aff9f809aee3ac00d3a.tar.gz
minetest-1704badc306fc8c7c6609aff9f809aee3ac00d3a.tar.bz2
minetest-1704badc306fc8c7c6609aff9f809aee3ac00d3a.zip
work-in-progress texture atlas optimization
Diffstat (limited to 'src/texture.h')
-rw-r--r--src/texture.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/texture.h b/src/texture.h
index f14efae11..d8310789d 100644
--- a/src/texture.h
+++ b/src/texture.h
@@ -20,6 +20,14 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#ifndef TEXTURE_HEADER
#define TEXTURE_HEADER
+// This file now contains all that was here
+#include "tile.h"
+
+// TODO: Remove this
+typedef u16 textureid_t;
+
+#if 0
+
#include "common_irrlicht.h"
//#include "utility.h"
#include "debug.h"
@@ -122,3 +130,5 @@ struct TextureSpec
};
#endif
+
+#endif