]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - gl_backend.h
added r_showtris
[xonotic/darkplaces.git] / gl_backend.h
index 43a1822e92f241d7bab2f274345111c50d66604a..1bec4133e58a227628c2de9e1bb25f602d4d4dbc 100644 (file)
@@ -7,9 +7,8 @@
 #define POLYGONELEMENTS_MAXPOINTS 258
 extern int polygonelements[768];
 
-void GL_SetupView_ViewPort(int x, int y, int width, int height);
 void GL_SetupView_Orientation_Identity(void);
-void GL_SetupView_Orientation_FromEntity(vec3_t origin, vec3_t angles);
+void GL_SetupView_Orientation_FromEntity(matrix4x4_t *matrix);
 void GL_SetupView_Mode_Perspective(double fovx, double fovy, double zNear, double zFar);
 void GL_SetupView_Mode_PerspectiveInfiniteFarClip(double fovx, double fovy, double zNear);
 void GL_SetupView_Mode_Ortho(double x1, double y1, double x2, double y2, double zNear, double zFar);
@@ -73,7 +72,7 @@ void R_Mesh_State_Texture(const rmeshstate_t *m);
 // renders a mesh
 void R_Mesh_Draw(int numverts, int numtriangles, const int *elements);
 // renders a mesh as lines
-void R_Mesh_Draw_ShowTris(int numverts, int numtriangles, int *elements);
+void R_Mesh_Draw_ShowTris(int numverts, int numtriangles, const int *elements);
 
 // saves a section of the rendered frame to a .tga or .jpg file
 qboolean SCR_ScreenShot(char *filename, int x, int y, int width, int height, qboolean jpeg);