From: Erik Faye-Lund Date: Mon, 25 Feb 2019 12:00:47 +0000 (+0100) Subject: mesa/main: clean up extension-check for GL_TEXTURE_CUBE_MAP_SEAMLESS X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0006dfbaed1376b88e1f2eadbd2da3ba3cd86ef3;p=mesa.git mesa/main: clean up extension-check for GL_TEXTURE_CUBE_MAP_SEAMLESS Signed-off-by: Erik Faye-Lund Part-of: --- diff --git a/src/mesa/main/enable.c b/src/mesa/main/enable.c index 6495d4154c2..b462b2b72bf 100644 --- a/src/mesa/main/enable.c +++ b/src/mesa/main/enable.c @@ -1147,9 +1147,8 @@ _mesa_set_enable(struct gl_context *ctx, GLenum cap, GLboolean state) break; case GL_TEXTURE_CUBE_MAP_SEAMLESS: - if (!_mesa_is_desktop_gl(ctx)) + if (!_mesa_has_ARB_seamless_cube_map(ctx)) goto invalid_enum_error; - CHECK_EXTENSION(ARB_seamless_cube_map); if (ctx->Texture.CubeMapSeamless != state) { FLUSH_VERTICES(ctx, _NEW_TEXTURE_OBJECT); ctx->Texture.CubeMapSeamless = state; @@ -1866,9 +1865,8 @@ _mesa_IsEnabled( GLenum cap ) return ctx->ATIFragmentShader.Enabled; case GL_TEXTURE_CUBE_MAP_SEAMLESS: - if (!_mesa_is_desktop_gl(ctx)) + if (!_mesa_has_ARB_seamless_cube_map(ctx)) goto invalid_enum_error; - CHECK_EXTENSION(ARB_seamless_cube_map); return ctx->Texture.CubeMapSeamless; case GL_RASTERIZER_DISCARD: