Mercurial > hg > Game > Cerium
view Renderer/test_render/task/TileHash.h @ 327:c8edba9cabb7 draft
add test_render/show_time.{cpp,h} {spe,task}/ShowTime.{cpp,h} but incomplete
author | aaa |
---|---|
date | Fri, 12 Jun 2009 02:07:06 +0900 |
parents | 15bfacccde99 |
children |
line wrap: on
line source
#ifndef INCLUDED_TEXTURE_HASH #define INCLUDED_TEXTURE_HASH #ifndef INCLUDED_TAPESTRY # include "Tapestry.h" #endif class TileHash { public: TileHash(void); private: TilePtr *table; int hashSize; int tableSize; public: void clear(void); int hash(uint32 data); int put(uint32 *addr, TilePtr tile); TilePtr get(uint32 *addr); void remove(uint32 *addr); }; typedef TileHash* TileHashPtr; #endif const int GLOBAL_TEXTURE_HASH = 0; const int GLOBAL_TILE_LIST = 1;