1
0
mirror of https://github.com/minetest/minetest.git synced 2025-07-01 07:30:23 +02:00

Sending of textures WIP

This commit is contained in:
Perttu Ahola
2011-11-15 11:02:47 +02:00
parent 7bdc328a71
commit 45fc45a49e
6 changed files with 303 additions and 55 deletions

View File

@ -156,8 +156,10 @@ public:
{return NULL;}
virtual void updateAP(AtlasPointer &ap){};
virtual void buildMainAtlas(class IGameDef *gamedef)=0;
virtual void processQueue()=0;
virtual void buildMainAtlas(class IGameDef *gamedef)=0;
// img is eaten, do not drop it
virtual void insertImage(const std::string &name, video::IImage *img)=0;
};
IWritableTextureSource* createTextureSource(IrrlichtDevice *device);