diff options
author | Dave Airlie <[email protected]> | 2015-05-19 16:16:07 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2015-05-20 12:32:51 +1000 |
commit | a6861ecfc91973ba97989def97dd571e0e096888 (patch) | |
tree | 32fb61482e9ece80e3f783b491424a02b0d68568 /src/gallium/auxiliary/tgsi/tgsi_exec.h | |
parent | 3f5c67d6510fe0210079ddecc0d30227a6cc4111 (diff) |
tgsi: handle TG4 opcode in tgsi exec
This just adds a new modifier interface for drivers to implement.
Reviewed-by: Brian Paul <[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 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.h b/src/gallium/auxiliary/tgsi/tgsi_exec.h index 0e59b884897..0f4c966cc11 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_exec.h +++ b/src/gallium/auxiliary/tgsi/tgsi_exec.h @@ -93,7 +93,8 @@ enum tgsi_sampler_control { tgsi_sampler_lod_bias, tgsi_sampler_lod_explicit, tgsi_sampler_lod_zero, - tgsi_sampler_derivs_explicit + tgsi_sampler_derivs_explicit, + tgsi_sampler_gather, }; /** |