diff options
author | Brian Paul <[email protected]> | 2012-09-22 18:45:33 -0600 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2012-10-16 14:57:20 -0700 |
commit | 99940eef48980b795b10e43ac388b7435b8defbc (patch) | |
tree | 968fb41e8c9deb635e617311f9b3fd8e2d2e09a3 /src/mesa/main/blend.c | |
parent | 198fa6452bf4cb7e5468263af5447932537c5314 (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/blend.c')
-rw-r--r-- | src/mesa/main/blend.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/mesa/main/blend.c b/src/mesa/main/blend.c index 5d553118c1b..5cd3ce24425 100644 --- a/src/mesa/main/blend.c +++ b/src/mesa/main/blend.c @@ -256,9 +256,6 @@ _mesa_BlendFuncSeparateEXT( GLenum sfactorRGB, GLenum dfactorRGB, } -#if _HAVE_FULL_GL - - /** * Set blend source/dest factors for one color buffer/target. */ @@ -520,10 +517,6 @@ _mesa_BlendEquationSeparatei(GLuint buf, GLenum modeRGB, GLenum modeA) } - -#endif /* _HAVE_FULL_GL */ - - /** * Set the blending color. * @@ -666,7 +659,7 @@ _mesa_LogicOp( GLenum opcode ) ctx->Driver.LogicOpcode( ctx, opcode ); } -#if _HAVE_FULL_GL + void GLAPIENTRY _mesa_IndexMask( GLuint mask ) { @@ -679,7 +672,6 @@ _mesa_IndexMask( GLuint mask ) FLUSH_VERTICES(ctx, _NEW_COLOR); ctx->Color.IndexMask = mask; } -#endif /** |