diff options
author | Ilia Mirkin <[email protected]> | 2014-12-31 01:47:15 -0500 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2015-02-02 20:35:36 -0500 |
commit | 83321009dede4dc70aae14c4e5ef48973208f931 (patch) | |
tree | 1bf879dddbc9d3d6f8e415fef053ddd33bc4bfd5 /src/mesa/main/polygon.h | |
parent | 0f06f12c119ab9518f513f0a9bfdd06e3f5ce0c4 (diff) |
glapi: add GL_EXT_polygon_offset_clamp
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Glenn Kennard <[email protected]>
Diffstat (limited to 'src/mesa/main/polygon.h')
-rw-r--r-- | src/mesa/main/polygon.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesa/main/polygon.h b/src/mesa/main/polygon.h index 530adba4cb4..6cf14d3e2ac 100644 --- a/src/mesa/main/polygon.h +++ b/src/mesa/main/polygon.h @@ -55,12 +55,15 @@ 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_init_polygon( struct gl_context * ctx ); #endif |