summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/polygon.c
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2012-09-22 18:45:33 -0600
committerIan Romanick <[email protected]>2012-10-16 14:57:20 -0700
commit99940eef48980b795b10e43ac388b7435b8defbc (patch)
tree968fb41e8c9deb635e617311f9b3fd8e2d2e09a3 /src/mesa/main/polygon.c
parent198fa6452bf4cb7e5468263af5447932537c5314 (diff)
mesa: remove #if _HAVE_FULL_GL checks
This is basically more of the "remove FEATURE_x" clean-up. Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main/polygon.c')
-rw-r--r--src/mesa/main/polygon.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mesa/main/polygon.c b/src/mesa/main/polygon.c
index d7d52daa89e..eb53f8a4ac2 100644
--- a/src/mesa/main/polygon.c
+++ b/src/mesa/main/polygon.c
@@ -184,8 +184,6 @@ _mesa_PolygonMode( GLenum face, GLenum mode )
ctx->Driver.PolygonMode(ctx, face, mode);
}
-#if _HAVE_FULL_GL
-
/**
* This routine updates the ctx->Polygon.Stipple state.
@@ -298,7 +296,6 @@ _mesa_PolygonOffsetEXT( GLfloat factor, GLfloat bias )
_mesa_PolygonOffset(factor, bias * ctx->DrawBuffer->_DepthMaxF );
}
-#endif
/**********************************************************************/