diff options
author | Dave Airlie <[email protected]> | 2016-04-26 14:26:20 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2016-04-27 09:00:35 +1000 |
commit | 16a9dc1e499a9695fa33f4922046fc7bc4dff07a (patch) | |
tree | e541bbe250c98b896943a909b508540337a69517 /src/gallium/auxiliary/tgsi/tgsi_exec.h | |
parent | 354c5f2d0fd7aa2bd6b3387f9421788812c7e56c (diff) |
tgsi/exec: implement load/store/atomic on MEMORY.
This implements basic load/store/atomic ops on MEMORY types
for compute shaders.
Acked-by: Roland Scheidegger <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_exec.h')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_exec.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.h b/src/gallium/auxiliary/tgsi/tgsi_exec.h index 0cdc1940c7c..564b3d5d5cc 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_exec.h +++ b/src/gallium/auxiliary/tgsi/tgsi_exec.h @@ -385,6 +385,10 @@ struct tgsi_exec_machine float Face; /**< +1 if front facing, -1 if back facing */ bool flatshade_color; + /* Compute Only */ + void *LocalMem; + unsigned LocalMemSize; + /* See GLSL 4.50 specification for definition of helper invocations */ uint NonHelperMask; /**< non-helpers */ /* Conditional execution masks */ |