summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/softpipe/sp_fs_exec.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2016-04-11 13:02:20 +1000
committerDave Airlie <airlied@redhat.com>2016-04-12 14:16:13 +1000
commitafa8707ba93a7d226a76319acda2a8dd89524db7 (patch)
tree1e866666402a7b6b2bcc99529eec3a7b11783be4 /src/gallium/drivers/softpipe/sp_fs_exec.c
parentc2aeeca4554d744b6293ad87d9a183e51b0138ff (diff)
downloadexternal_mesa3d-afa8707ba93a7d226a76319acda2a8dd89524db7.zip
external_mesa3d-afa8707ba93a7d226a76319acda2a8dd89524db7.tar.gz
external_mesa3d-afa8707ba93a7d226a76319acda2a8dd89524db7.tar.bz2
softpipe: add SSBO/shader atomics support.
This adds support for the features requires for ARB_shader_storage_buffer_object and ARB_shader_atomic_counters, ARB_shader_atomic_counter_ops. [airlied: some cleanups applied] Reviewed-by: Brian Paul <brianp@vmware.com> Reviewed-by: Roland Scheidegger <sroland@vmware.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_fs_exec.c')
-rw-r--r--src/gallium/drivers/softpipe/sp_fs_exec.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gallium/drivers/softpipe/sp_fs_exec.c b/src/gallium/drivers/softpipe/sp_fs_exec.c
index 6a5f7ac..155382a 100644
--- a/src/gallium/drivers/softpipe/sp_fs_exec.c
+++ b/src/gallium/drivers/softpipe/sp_fs_exec.c
@@ -63,14 +63,15 @@ static void
exec_prepare( const struct sp_fragment_shader_variant *var,
struct tgsi_exec_machine *machine,
struct tgsi_sampler *sampler,
- struct tgsi_image *image )
+ struct tgsi_image *image,
+ struct tgsi_buffer *buffer )
{
/*
* Bind tokens/shader to the interpreter's machine state.
*/
tgsi_exec_machine_bind_shader(machine,
var->tokens,
- sampler, image, NULL);
+ sampler, image, buffer);
}