From: Erik Faye-Lund Date: Wed, 7 Nov 2018 12:22:41 +0000 (+0100) Subject: mesa/main: fix validation of GL_ANY_SAMPLES_PASSED_CONSERVATIVE X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=059928e114f15ff3d1c77e8eb7d7aba4d322d69d;p=mesa.git mesa/main: fix validation of GL_ANY_SAMPLES_PASSED_CONSERVATIVE ctx->Extensions.ARB_ES3_compatibility is set based on the driver- capabilities, not based on the context type. We need to check against _mesa_has_ARB_ES3_compatibility(ctx) instead to figure out if the extension is really supported. In addition, EXT_occlusion_query_boolean should also allow this behavior. This shouldn't cause any functional change, as all drivers that support ES3_compatibility should in practice enable either ES3_compatibility or EXT_occlusion_query_boolean under all APIs that export this symbol. Signed-off-by: Erik Faye-Lund Reviewed-by: Tapani Pälli --- diff --git a/src/mesa/main/queryobj.c b/src/mesa/main/queryobj.c index 25d76a48648..e9bc1a7de40 100644 --- a/src/mesa/main/queryobj.c +++ b/src/mesa/main/queryobj.c @@ -191,8 +191,8 @@ get_query_binding_point(struct gl_context *ctx, GLenum target, GLuint index) else return NULL; case GL_ANY_SAMPLES_PASSED_CONSERVATIVE: - if (ctx->Extensions.ARB_ES3_compatibility - || (ctx->API == API_OPENGLES2 && ctx->Version >= 30)) + if (_mesa_has_ARB_ES3_compatibility(ctx) || + _mesa_has_EXT_occlusion_query_boolean(ctx)) return &ctx->Query.CurrentOcclusionObject; else return NULL;