]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - cl_screen.h
added gl_mesh_batching (default on) which merges several meshes in a row to reduce...
[xonotic/darkplaces.git] / cl_screen.h
index 76c343d352f6e083d5da33eb15a6503678b56b04..7f1ddb975e367c2361aa86dc9cd9f984aa9fc283 100644 (file)
@@ -25,10 +25,10 @@ typedef struct drawqueuemesh_s
        rtexture_t *texture;
        int numtriangles;
        int numvertices;
-       int *indices;
-       float *vertices;
-       float *texcoords;
-       float *colors;
+       int *element3i;
+       float *vertex3f;
+       float *texcoord2f;
+       float *color4f;
 }
 drawqueuemesh_t;
 
@@ -53,6 +53,7 @@ void SHOWLMP_drawall(void);
 void SHOWLMP_clear(void);
 
 extern cvar_t scr_2dresolution;
+extern cvar_t scr_screenshot_jpeg;
 
 void CL_Screen_NewMap(void);
 void CL_Screen_Init(void);