diff options
author | Oliver McFadden <[email protected]> | 2012-09-13 10:44:09 +0300 |
---|---|---|
committer | Oliver McFadden <[email protected]> | 2012-09-15 12:57:57 +0300 |
commit | 9f37b405a3de8668a5f74c9681829688475ac3b7 (patch) | |
tree | 65278c8be5965885686f40b5de87d7b6c1570b53 /src/mesa/main/glformats.c | |
parent | ab1a9430c3a4c2ec52e0dbb969a01165dd33ce4b (diff) |
mesa: remove remaining FEATURE_* defines where protected by API check.
Signed-off-by: Oliver McFadden <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/glformats.c')
-rw-r--r-- | src/mesa/main/glformats.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/main/glformats.c b/src/mesa/main/glformats.c index 047a613a131..ec774f6fd37 100644 --- a/src/mesa/main/glformats.c +++ b/src/mesa/main/glformats.c @@ -827,7 +827,6 @@ _mesa_is_compressed_format(struct gl_context *ctx, GLenum format) case GL_ETC1_RGB8_OES: return _mesa_is_gles(ctx) && ctx->Extensions.OES_compressed_ETC1_RGB8_texture; -#if FEATURE_ES case GL_PALETTE4_RGB8_OES: case GL_PALETTE4_RGBA8_OES: case GL_PALETTE4_R5_G6_B5_OES: @@ -839,7 +838,6 @@ _mesa_is_compressed_format(struct gl_context *ctx, GLenum format) case GL_PALETTE8_RGBA4_OES: case GL_PALETTE8_RGB5_A1_OES: return ctx->API == API_OPENGLES; -#endif default: return GL_FALSE; } |