diff options
author | Ilia Mirkin <[email protected]> | 2017-02-09 18:48:18 -0500 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2017-04-05 15:29:41 +0200 |
commit | 08bd0aa507fae7259de06853cc60031331f75183 (patch) | |
tree | 6faa5ad97847b79f2f2165b28fd05e62d517bc42 /src/gallium/include/pipe | |
parent | 3650d7455fd467e1674888ecf4573756a82c9033 (diff) |
tgsi: add SUBGROUP_* semantics
v2: add documentation (Nicolai)
Signed-off-by: Ilia Mirkin <[email protected]>
Signed-off-by: Nicolai Hähnle <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/include/pipe')
-rw-r--r-- | src/gallium/include/pipe/p_shader_tokens.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gallium/include/pipe/p_shader_tokens.h b/src/gallium/include/pipe/p_shader_tokens.h index 7e8b3caf23b..a671121f10f 100644 --- a/src/gallium/include/pipe/p_shader_tokens.h +++ b/src/gallium/include/pipe/p_shader_tokens.h @@ -199,6 +199,13 @@ enum tgsi_semantic { TGSI_SEMANTIC_BASEINSTANCE, TGSI_SEMANTIC_DRAWID, TGSI_SEMANTIC_WORK_DIM, /**< opencl get_work_dim value */ + TGSI_SEMANTIC_SUBGROUP_SIZE, + TGSI_SEMANTIC_SUBGROUP_INVOCATION, + TGSI_SEMANTIC_SUBGROUP_EQ_MASK, + TGSI_SEMANTIC_SUBGROUP_GE_MASK, + TGSI_SEMANTIC_SUBGROUP_GT_MASK, + TGSI_SEMANTIC_SUBGROUP_LE_MASK, + TGSI_SEMANTIC_SUBGROUP_LT_MASK, TGSI_SEMANTIC_COUNT, /**< number of semantic values */ }; |