diff options
author | Dave Airlie <[email protected]> | 2016-05-05 13:11:11 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2016-05-05 20:29:02 +1000 |
commit | 76a36ac3eaaae8a6aa0d0e17273d09df9f7688bb (patch) | |
tree | ea0b8bd5e91f12c2f8a6fc35c0de7322b51b2007 /src/mesa/main | |
parent | 2dd3fc3cac020237ae0dd924941dcfaf1c11da0b (diff) |
mesa/ubo: add missing compute cases for ubo/atomic buffers
This fixes: GL43-CTS.compute_shader.resource-ubo
Reviewed-by: Anuj Phogat <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/uniforms.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/main/uniforms.c b/src/mesa/main/uniforms.c index a9308d09f69..acb2d06dfd8 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, |