Mercurial > hg > Members > kono > Cerium
annotate TaskManager/Test/test_render/TextureHash.h @ 168:cf2aa37d2fe7
Delete DrawSpan::get_pixel().
author | gongo@localhost.localdomain |
---|---|
date | Thu, 11 Dec 2008 10:38:28 +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 |