]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - gl_backend.h
removed the USETEXMATRIX define (now always on), reduced varray_texcoord3f to only...
[xonotic/darkplaces.git] / gl_backend.h
index 393d805a72433a0ce455a8cdaa97ff537d417a18..dcb7ed972aa2d49209c4caf32a8c32af8014e9be 100644 (file)
@@ -108,37 +108,12 @@ void SCR_UpdateScreen(void);
 // invoke refresh of loading plaque (nothing else seen)
 void SCR_UpdateLoadingScreen(void);
 
-#if 0
-// public structure
-typedef struct rcachearrayrequest_s
-{
-       // for use by the code that is requesting the array, these are not
-       // directly used but merely compared to determine if cache items are
-       // identical
-       const void *id_pointer1;
-       const void *id_pointer2;
-       const void *id_pointer3;
-       int id_number1;
-       int id_number2;
-       int id_number3;
-       // size of array data
-       int data_size;
-       // array data pointer
-       void *data;
-}
-rcachearrayrequest_t;
-
-int R_Mesh_CacheArray(rcachearrayrequest_t *r);
-#endif
-
 extern float varray_vertex3f[65536*3];
 extern float varray_svector3f[65536*3];
 extern float varray_tvector3f[65536*3];
 extern float varray_normal3f[65536*3];
 extern float varray_color4f[65536*4];
-extern float varray_texcoord2f[4][65536*2];
-extern float varray_texcoord3f[4][65536*3];
-extern int earray_element3i[65536];
+extern float varray_texcoord3f[65536*3];
 extern float varray_vertex3f2[65536*3];
 
 #endif