Mercurial > hg > Members > kono > Cerium
annotate Renderer/Engine/TextureHash.h @ 914:05696567d1d2
0 is filled on the spe side.
author | yutaka@localhost.localdomain |
---|---|
date | Thu, 22 Jul 2010 00:23:37 +0900 |
parents | 735f76483bb2 |
children | 6a80ca9a65d9 |
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); | |
507 | 17 int hash_function(const char* image_name); |
18 int hash_regist(const char* image_name, int &tx_id); | |
283 | 19 }; |
20 | |
21 #endif |