view TaskManager/Test/test_render/hash_texture.h @ 294:0b823cdb0d93

merge
author e065746@localhost.localdomain
date Fri, 05 Jun 2009 19:18:12 +0900
parents fc314f28b66e
children 25c820b6060e
line wrap: on
line source

const int N = 8192;

struct
hashtable{
    int tx_id;
    char* key;
};

class TextureHash {
    hashtable table[N];
public:
    hash(void);
    int hash_function(const char*);
    int hash_regist(const char*);
};