From: Danylo Piliaiev Date: Thu, 21 Jun 2018 09:34:15 +0000 (+0300) Subject: mesa: Return number of result bits for GL_ANY_SAMPLES_PASSED_CONSERVATIVE X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e7cdaa895a785025a7af80a187a358c880379f96;p=mesa.git mesa: Return number of result bits for GL_ANY_SAMPLES_PASSED_CONSERVATIVE Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=106986 Signed-off-by: Danylo Piliaiev Reviewed-by: Tapani Pälli --- diff --git a/src/mesa/main/queryobj.c b/src/mesa/main/queryobj.c index 7ee820aefd1..7547fa1bb4d 100644 --- a/src/mesa/main/queryobj.c +++ b/src/mesa/main/queryobj.c @@ -698,6 +698,7 @@ _mesa_GetQueryIndexediv(GLenum target, GLuint index, GLenum pname, *params = ctx->Const.QueryCounterBits.SamplesPassed; break; case GL_ANY_SAMPLES_PASSED: + case GL_ANY_SAMPLES_PASSED_CONSERVATIVE: /* The minimum value of this is 1 if it's nonzero, and the value * is only ever GL_TRUE or GL_FALSE, so no sense in reporting more * bits.