Module: Mesa Branch: master Commit: e2dbd31dc0eb69f3a1df262842635c6ff8103d84 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=e2dbd31dc0eb69f3a1df262842635c6ff8103d84
Author: Erik Faye-Lund <[email protected]> Date: Mon Feb 25 12:57:22 2019 +0100 mesa/main: clean up extension-check for GL_DEPTH_BOUNDS_TEST Signed-off-by: Erik Faye-Lund <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/329> --- src/mesa/main/enable.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/mesa/main/enable.c b/src/mesa/main/enable.c index 09ac6ab5db3..50a809ebf64 100644 --- a/src/mesa/main/enable.c +++ b/src/mesa/main/enable.c @@ -1092,9 +1092,8 @@ _mesa_set_enable(struct gl_context *ctx, GLenum cap, GLboolean state) /* GL_EXT_depth_bounds_test */ case GL_DEPTH_BOUNDS_TEST_EXT: - if (!_mesa_is_desktop_gl(ctx)) + if (!_mesa_has_EXT_depth_bounds_test(ctx)) goto invalid_enum_error; - CHECK_EXTENSION(EXT_depth_bounds_test); if (ctx->Depth.BoundsTest == state) return; FLUSH_VERTICES(ctx, ctx->DriverFlags.NewDepth ? 0 : _NEW_DEPTH); @@ -1842,9 +1841,8 @@ _mesa_IsEnabled( GLenum cap ) /* GL_EXT_depth_bounds_test */ case GL_DEPTH_BOUNDS_TEST_EXT: - if (!_mesa_is_desktop_gl(ctx)) + if (!_mesa_has_EXT_depth_bounds_test(ctx)) goto invalid_enum_error; - CHECK_EXTENSION(EXT_depth_bounds_test); return ctx->Depth.BoundsTest; /* GL_ARB_depth_clamp */ _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
