X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fmesa%2Fmain%2Flines.h;h=8e8b3f8d6e12e1febe68899ad6d1e7520d8ce1db;hb=751fe9058bc15f4f8608f0fdc02209542991ff23;hp=ac4b33f4db66f0fa7f1c3807df82ebd31bfe53f9;hpb=9ac51f57efe07ed43a1e4224a7f5daddec401b36;p=mesa.git diff --git a/src/mesa/main/lines.h b/src/mesa/main/lines.h index ac4b33f4db6..8e8b3f8d6e1 100644 --- a/src/mesa/main/lines.h +++ b/src/mesa/main/lines.h @@ -1,3 +1,7 @@ +/** + * \file lines.h + * Line operations. + */ /* * Mesa 3-D graphics library @@ -24,18 +28,22 @@ */ + #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