Mesa (master): mesa/ubo: add missing compute cases for ubo/atomic buffers

Dave Airlie airlied at kemper.freedesktop.org
Thu May 5 10:29:38 UTC 2016


Module: Mesa
Branch: master
Commit: 76a36ac3eaaae8a6aa0d0e17273d09df9f7688bb
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=76a36ac3eaaae8a6aa0d0e17273d09df9f7688bb

Author: Dave Airlie <airlied at redhat.com>
Date:   Thu May  5 13:11:11 2016 +1000

mesa/ubo: add missing compute cases for ubo/atomic buffers

This fixes: GL43-CTS.compute_shader.resource-ubo

Reviewed-by: Anuj Phogat <anuj.phogat at gmail.com>
Signed-off-by: Dave Airlie <airlied at redhat.com>

---

 src/mesa/main/uniforms.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/mesa/main/uniforms.c b/src/mesa/main/uniforms.c
index a9308d0..acb2d06 100644
--- a/src/mesa/main/uniforms.c
+++ b/src/mesa/main/uniforms.c
@@ -1144,6 +1144,12 @@ mesa_bufferiv(struct gl_shader_program *shProg, GLenum type,
                                   GL_REFERENCED_BY_FRAGMENT_SHADER, params,
                                   caller);
       return;
+   case GL_UNIFORM_BLOCK_REFERENCED_BY_COMPUTE_SHADER:
+   case GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER:
+      _mesa_program_resource_prop(shProg, res, index,
+                                  GL_REFERENCED_BY_COMPUTE_SHADER, params,
+                                  caller);
+      return;
    default:
       _mesa_error(ctx, GL_INVALID_ENUM,
                   "%s(pname 0x%x (%s))", caller, pname,




More information about the mesa-commit mailing list