summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErik Faye-Lund <[email protected]>2019-02-25 12:54:13 +0100
committerErik Faye-Lund <[email protected]>2020-04-01 12:57:57 +0200
commit67a7022f83965795c5a5080f3ac5aedb7d9387b3 (patch)
treee96e4dc88afb8b67a5934a8753c14c23dc1c8288
parent421a1accf0e7840f476d88e63e5861ec4f8deb76 (diff)
mesa/main: clean up extension-check for GL_STENCIL_TEST_TWO_SIDE
Signed-off-by: Erik Faye-Lund <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/329>
-rw-r--r--src/mesa/main/enable.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mesa/main/enable.c b/src/mesa/main/enable.c
index 945c7cf6aab..09ac6ab5db3 100644
--- a/src/mesa/main/enable.c
+++ b/src/mesa/main/enable.c
@@ -1067,9 +1067,8 @@ _mesa_set_enable(struct gl_context *ctx, GLenum cap, GLboolean state)
/* GL_EXT_stencil_two_side */
case GL_STENCIL_TEST_TWO_SIDE_EXT:
- if (ctx->API != API_OPENGL_COMPAT)
+ if (!_mesa_has_EXT_stencil_two_side(ctx))
goto invalid_enum_error;
- CHECK_EXTENSION(EXT_stencil_two_side);
if (ctx->Stencil.TestTwoSide == state)
return;
FLUSH_VERTICES(ctx, ctx->DriverFlags.NewStencil ? 0 : _NEW_STENCIL);
@@ -1832,9 +1831,8 @@ _mesa_IsEnabled( GLenum cap )
/* GL_EXT_stencil_two_side */
case GL_STENCIL_TEST_TWO_SIDE_EXT:
- if (ctx->API != API_OPENGL_COMPAT)
+ if (!_mesa_has_EXT_stencil_two_side(ctx))
goto invalid_enum_error;
- CHECK_EXTENSION(EXT_stencil_two_side);
return ctx->Stencil.TestTwoSide;
case GL_FRAGMENT_PROGRAM_ARB: