summaryrefslogtreecommitdiff
path: root/src/iirrlichtwrapper.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/iirrlichtwrapper.h
parent949383a2f7c0707667f76615fc748ff4879e2cc1 (diff)
downloadminetest-1704badc306fc8c7c6609aff9f809aee3ac00d3a.tar.gz
minetest-1704badc306fc8c7c6609aff9f809aee3ac00d3a.tar.bz2
minetest-1704badc306fc8c7c6609aff9f809aee3ac00d3a.zip
work-in-progress texture atlas optimization
Diffstat (limited to 'src/iirrlichtwrapper.h')
-rw-r--r--src/iirrlichtwrapper.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/iirrlichtwrapper.h b/src/iirrlichtwrapper.h
index 47ae21ee9..66f8a55c6 100644
--- a/src/iirrlichtwrapper.h
+++ b/src/iirrlichtwrapper.h
@@ -21,6 +21,11 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#define IIRRLICHTWRAPPER_HEADER
#include "common_irrlicht.h"
+#include "texture.h"
+
+/*
+ NOTE: This is deprecated and should be removed completely
+*/
/*
IrrlichtWrapper prototype.
@@ -38,15 +43,18 @@ public:
{
}
+ // Should be called only from the main thread
+ virtual IrrlichtDevice* getDevice(){ return NULL; }
+
virtual u32 getTime()
{
return 0;
}
- virtual textureid_t getTextureId(const std::string &name){ return 0; }
+ /*virtual textureid_t getTextureId(const std::string &name){ return 0; }
virtual std::string getTextureName(textureid_t id){ return ""; }
virtual video::ITexture* getTexture(const std::string &name){ return NULL; }
- virtual video::ITexture* getTexture(const TextureSpec &spec){ return NULL; }
+ virtual video::ITexture* getTexture(const TextureSpec &spec){ return NULL; }*/
private:
};