From 00c683bc8e991031b88cfe0862415e571daf851b Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Mon, 25 Feb 2019 12:06:23 +0100 Subject: [PATCH] mesa/main: make the PRIMITIVE_RESTART_NV checks consistent {En,Dis}ableClientState(PRIMITIVE_RESTART_NV) should only work on compatibility contextxs. While we're at it, modernize the code a bit, by using the extension helpers instead of open-coding. Signed-off-by: Erik Faye-Lund Reviewed-by: Ian Romanick --- src/mesa/main/enable.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/mesa/main/enable.c b/src/mesa/main/enable.c index dc9c77cfb86..ce64e037906 100644 --- a/src/mesa/main/enable.c +++ b/src/mesa/main/enable.c @@ -107,7 +107,7 @@ client_state(struct gl_context *ctx, GLenum cap, GLboolean state) /* GL_NV_primitive_restart */ case GL_PRIMITIVE_RESTART_NV: - if (!ctx->Extensions.NV_primitive_restart) + if (!_mesa_has_NV_primitive_restart(ctx)) goto invalid_enum_error; if (ctx->Array.PrimitiveRestart == state) return; @@ -1721,9 +1721,8 @@ _mesa_IsEnabled( GLenum cap ) /* GL_NV_primitive_restart */ case GL_PRIMITIVE_RESTART_NV: - if (ctx->API != API_OPENGL_COMPAT || !ctx->Extensions.NV_primitive_restart) { + if (!_mesa_has_NV_primitive_restart(ctx)) goto invalid_enum_error; - } return ctx->Array.PrimitiveRestart; /* GL 3.1 primitive restart */ -- 2.30.2