Mercurial > hg > Game > Cerium
annotate Renderer/test_render/TextureHash.h @ 503:516d5c91d5b4 draft double-linked-task-list
comment
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 11 Oct 2009 19:35:33 +0900 |
parents | 15bfacccde99 |
children |
rev | line source |
---|---|
283 | 1 #ifndef INCLUDED_TEXTURE_HASH |
2 #define INCLUDED_TEXTURE_HASH | |
3 | |
4 const int TABLE_SIZE = 8192; | |
5 | |
6 struct hashtable{ | |
7 int tx_id; | |
8 char* key; | |
9 }; | |
10 | |
11 class TextureHash { | |
12 public: | |
13 hashtable *table; | |
14 | |
15 TextureHash(void); | |
16 ~TextureHash(void); | |
17 int hash_function(const char*); | |
18 int hash_regist(const char*); | |
19 }; | |
20 | |
21 #endif |