diff options
author | Dave Airlie <[email protected]> | 2016-03-22 07:53:48 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2016-03-31 09:14:05 +1000 |
commit | 22d1296013825a4dce84e6f579581202a18767c7 (patch) | |
tree | 4518a8dccc2dc96f9bf61f0ca628d2b9a143f838 /src/gallium/drivers/softpipe | |
parent | 493eab76792307d066489bc1d88798f14a5df31d (diff) |
tgsi: add support for image operations to tgsi_exec. (v2.1)
This adds support for load/store/atomic operations on images
along with image tracking support.
v2: add RESQ support. (Ilia)
v2.1: constify interface (Brian)
split get_image_coord_dim (Brian)
Reviewed-by: Brian Paul <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/drivers/softpipe')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_fs_exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/softpipe/sp_fs_exec.c b/src/gallium/drivers/softpipe/sp_fs_exec.c index e2d527dab66..2c5bf7ef5c9 100644 --- a/src/gallium/drivers/softpipe/sp_fs_exec.c +++ b/src/gallium/drivers/softpipe/sp_fs_exec.c @@ -69,7 +69,7 @@ exec_prepare( const struct sp_fragment_shader_variant *var, */ tgsi_exec_machine_bind_shader(machine, var->tokens, - sampler); + sampler, NULL); } @@ -184,7 +184,7 @@ exec_delete(struct sp_fragment_shader_variant *var, struct tgsi_exec_machine *machine) { if (machine->Tokens == var->tokens) { - tgsi_exec_machine_bind_shader(machine, NULL, NULL); + tgsi_exec_machine_bind_shader(machine, NULL, NULL, NULL); } FREE( (void *) var->tokens ); |