summaryrefslogtreecommitdiffstats
path: root/src/gallium/include
diff options
context:
space:
mode:
authorIlia Mirkin <[email protected]>2018-04-18 21:13:22 -0400
committerIlia Mirkin <[email protected]>2018-12-26 20:04:57 -0500
commit5574414edc471946efb9442398c65fc3f93f3e76 (patch)
tree80c9f91b9f1b529ea130beeadd307d6018c44738 /src/gallium/include
parentbac85342672a265735316049ecf36b74e1f2a852 (diff)
tgsi: add ATOMFADD operation
This is supported by at least NVIDIA hardware, and exposeable via GL extensions. Signed-off-by: Ilia Mirkin <[email protected]> Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/include')
-rw-r--r--src/gallium/include/pipe/p_shader_tokens.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_shader_tokens.h b/src/gallium/include/pipe/p_shader_tokens.h
index bef826f23b5..8f290615c3f 100644
--- a/src/gallium/include/pipe/p_shader_tokens.h
+++ b/src/gallium/include/pipe/p_shader_tokens.h
@@ -442,7 +442,7 @@ enum tgsi_opcode {
TGSI_OPCODE_BGNSUB = 100,
TGSI_OPCODE_ENDLOOP = 101,
TGSI_OPCODE_ENDSUB = 102,
- /* gap */
+ TGSI_OPCODE_ATOMFADD = 103,
TGSI_OPCODE_TXQS = 104,
TGSI_OPCODE_RESQ = 105,
TGSI_OPCODE_READ_FIRST = 106,