aboutsummaryrefslogtreecommitdiff
path: root/mesalib/src/mesa/main/polygon.h
diff options
context:
space:
mode:
Diffstat (limited to 'mesalib/src/mesa/main/polygon.h')
-rw-r--r--mesalib/src/mesa/main/polygon.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/mesalib/src/mesa/main/polygon.h b/mesalib/src/mesa/main/polygon.h
index 69c5cbc45..41344a2ef 100644
--- a/mesalib/src/mesa/main/polygon.h
+++ b/mesalib/src/mesa/main/polygon.h
@@ -39,10 +39,6 @@ struct gl_context;
extern void GLAPIENTRY
_mesa_GetnPolygonStippleARB( GLsizei bufSize, GLubyte *dest );
-extern void
-_mesa_polygon_stipple(struct gl_context *ctx, const GLubyte *pattern);
-
-
extern void GLAPIENTRY
_mesa_CullFace( GLenum mode );
@@ -59,12 +55,18 @@ extern void GLAPIENTRY
_mesa_PolygonOffsetEXT( GLfloat factor, GLfloat bias );
extern void GLAPIENTRY
+_mesa_PolygonOffsetClampEXT( GLfloat factor, GLfloat units, GLfloat clamp );
+
+extern void GLAPIENTRY
_mesa_PolygonStipple( const GLubyte *mask );
extern void GLAPIENTRY
_mesa_GetPolygonStipple( GLubyte *mask );
-extern void
+extern void
+_mesa_polygon_offset_clamp(struct gl_context *ctx,
+ GLfloat factor, GLfloat units, GLfloat clamp);
+extern void
_mesa_init_polygon( struct gl_context * ctx );
#endif