diff options
author | Ilia Mirkin <[email protected]> | 2014-04-23 23:14:55 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2014-04-26 11:57:09 -0400 |
commit | 4be146b1088c33ca377a2cf8a01e73c7f66732f7 (patch) | |
tree | 46c2509f5628445b8107195e2b96efbca65388ff /src/gallium/include | |
parent | 76db20fc672dafd70d40cbb184ae8793e72c7f80 (diff) |
gallium: add GS_INVOCATIONS property
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.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 1903d5318a1..b537166e93c 100644 --- a/src/gallium/include/pipe/p_shader_tokens.h +++ b/src/gallium/include/pipe/p_shader_tokens.h @@ -236,7 +236,8 @@ union tgsi_immediate_data #define TGSI_PROPERTY_FS_COLOR0_WRITES_ALL_CBUFS 5 #define TGSI_PROPERTY_FS_DEPTH_LAYOUT 6 #define TGSI_PROPERTY_VS_PROHIBIT_UCPS 7 -#define TGSI_PROPERTY_COUNT 8 +#define TGSI_PROPERTY_GS_INVOCATIONS 8 +#define TGSI_PROPERTY_COUNT 9 struct tgsi_property { unsigned Type : 4; /**< TGSI_TOKEN_TYPE_PROPERTY */ |