]> git.xonotic.org Git - xonotic/darkplaces.git/blob - gl_cache.h
writing a GLSL caching feature, will create a file for each compiled shader, and...
[xonotic/darkplaces.git] / gl_cache.h
1 #define GL_CACHE_VERSION        1
2
3 typedefstruct gl_cache_header_s
4 {
5   int version;
6   int crc;
7   int length;
8 } gl_cache_header_t;
9
10 void GL_Cache_Init(void);