diff options
author | Ilia Mirkin <[email protected]> | 2015-09-14 16:23:04 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2015-11-12 17:58:23 -0500 |
commit | e3d9dbe3046c4fd10c6b4c66d8016e908ea7c140 (patch) | |
tree | 447ddd78a7f4d668f4b37d1198fc15620115e15f /src/gallium/include | |
parent | 20748318c5b870fc27f699637041e67a67321f5f (diff) |
gallium: add support for gl_HelperInvocation semantic
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Glenn Kennard <[email protected]>
Diffstat (limited to 'src/gallium/include')
-rw-r--r-- | src/gallium/include/pipe/p_shader_tokens.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_shader_tokens.h b/src/gallium/include/pipe/p_shader_tokens.h index e0ab9013dd5..a3137aec8db 100644 --- a/src/gallium/include/pipe/p_shader_tokens.h +++ b/src/gallium/include/pipe/p_shader_tokens.h @@ -185,7 +185,8 @@ struct tgsi_declaration_interp #define TGSI_SEMANTIC_TESSOUTER 32 /**< outer tessellation levels */ #define TGSI_SEMANTIC_TESSINNER 33 /**< inner tessellation levels */ #define TGSI_SEMANTIC_VERTICESIN 34 /**< number of input vertices */ -#define TGSI_SEMANTIC_COUNT 35 /**< number of semantic values */ +#define TGSI_SEMANTIC_HELPER_INVOCATION 35 /**< current invocation is helper */ +#define TGSI_SEMANTIC_COUNT 36 /**< number of semantic values */ struct tgsi_declaration_semantic { |