]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - draw.h
Don't enable moncontrol if non-glibc on Linux. Fixes linking against musl
[xonotic/darkplaces.git] / draw.h
diff --git a/draw.h b/draw.h
index 1daa5eb0d45b602d7f3358789309a770652ec9b3..6ac5c39b139476c5a9fa4a7b66df012505ea4457 100644 (file)
--- a/draw.h
+++ b/draw.h
@@ -188,8 +188,8 @@ void DrawQ_SetClipArea(float x, float y, float width, float height);
 void DrawQ_ResetClipArea(void);
 // draw a line
 void DrawQ_Line(float width, float x1, float y1, float x2, float y2, float r, float g, float b, float alpha, int flags);
-// draw a lot of lines
-void DrawQ_Lines (float width, int numlines, const float *vertex3f, const float *color4f, int flags);
+// draw a lot of lines (call R_Mesh_PrepareVertices_Generic first)
+void DrawQ_Lines(float width, int numlines, int flags, qboolean hasalpha);
 // draw a line loop
 void DrawQ_LineLoop(drawqueuemesh_t *mesh, int flags);
 // resets r_refdef.draw2dstage
@@ -199,8 +199,6 @@ void DrawQ_RecalcView(void); // use this when changing r_refdef.view.* from e.g.
 
 rtexture_t *Draw_GetPicTexture(cachepic_t *pic);
 
-void R_DrawGamma(void);
-
 extern rtexturepool_t *drawtexturepool; // used by ft2.c
 
 #endif