From: Brian Paul Date: Sun, 23 Sep 2012 00:45:36 +0000 (-0600) Subject: mesa: remove FEATURE_ES test in _mesa_get_compressed_formats() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1633fa16270ff9c17420fe0a4edd40a03ec75c7a;p=mesa.git mesa: remove FEATURE_ES test in _mesa_get_compressed_formats() Reviewed-by: Ian Romanick --- diff --git a/src/mesa/main/texcompress.c b/src/mesa/main/texcompress.c index bb61e6eda74..957cc6df661 100644 --- a/src/mesa/main/texcompress.c +++ b/src/mesa/main/texcompress.c @@ -275,7 +275,6 @@ _mesa_get_compressed_formats(struct gl_context *ctx, GLint *formats) } } -#if FEATURE_ES1 if (ctx->API == API_OPENGLES) { if (formats) { formats[n++] = GL_PALETTE4_RGB8_OES; @@ -293,7 +292,6 @@ _mesa_get_compressed_formats(struct gl_context *ctx, GLint *formats) n += 10; } } -#endif return n; }