mesa: document sRGBDecode field
[mesa.git] / src / mesa / main / lines.h
index ac4b33f4db66f0fa7f1c3807df82ebd31bfe53f9..8e8b3f8d6e12e1febe68899ad6d1e7520d8ce1db 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file lines.h
+ * Line operations.
+ */
 
 /*
  * Mesa 3-D graphics library
  */
 
 
+
 #ifndef LINES_H
 #define LINES_H
 
 
-#include "mtypes.h"
+#include "glheader.h"
 
+struct gl_context;
 
-extern void
+extern void GLAPIENTRY
 _mesa_LineWidth( GLfloat width );
 
-extern void
+extern void GLAPIENTRY
 _mesa_LineStipple( GLint factor, GLushort pattern );
 
+extern void GLAPIENTRY 
+_mesa_init_line( struct gl_context * ctx );
 
 #endif