X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=blobdiff_plain;f=gl_backend.h;h=6b50d07977d3477ca31f9dd31161e166dc9f1326;hp=1bec4133e58a227628c2de9e1bb25f602d4d4dbc;hb=a1b49de12c089c9690446445059dd957d56de33d;hpb=406feaa034d99f0c62f15a7d015724ab55ab876c;ds=sidebyside diff --git a/gl_backend.h b/gl_backend.h index 1bec4133..6b50d079 100644 --- a/gl_backend.h +++ b/gl_backend.h @@ -15,15 +15,18 @@ void GL_SetupView_Mode_Ortho(double x1, double y1, double x2, double y2, double void GL_BlendFunc(int blendfunc1, int blendfunc2); void GL_DepthMask(int state); void GL_DepthTest(int state); +void GL_ColorMask(int r, int g, int b, int a); void GL_VertexPointer(const float *p); void GL_ColorPointer(const float *p); void GL_Color(float cr, float cg, float cb, float ca); +void GL_ShowTrisColor(float cr, float cg, float cb, float ca); void GL_TransformToScreen(const vec4_t in, vec4_t out); void GL_LockArrays(int first, int count); void GL_ActiveTexture(int num); void GL_ClientActiveTexture(int num); void GL_Scissor(int x, int y, int width, int height); // AK for DRAWQUEUE_SETCLIP void GL_ScissorTest(int state); // AK for DRAWQUEUE_(RE)SETCLIP +void GL_Clear(int mask); extern cvar_t gl_lockarrays; extern cvar_t gl_mesh_copyarrays;