Mercurial > hg > Members > kono > Cerium
annotate TaskManager/Test/test_render/TextureHash.h @ 205:efb1df3176f4
fix
author | gongo@localhost.localdomain |
---|---|
date | Tue, 27 Jan 2009 18:21:12 +0900 |
parents | fc314f28b66e |
children | 51ffd144f62c |
rev | line source |
---|---|
141 | 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 |