summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/radeonsi/si_shader.h
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2017-04-06 00:33:45 +0200
committerMarek Olšák <[email protected]>2017-04-28 21:47:35 +0200
commit0af00f179ec3303c2bf2bccbfe80703b96b4500d (patch)
tree2c7591918e25a3595b170b425bb1f4340a4c7fbb /src/gallium/drivers/radeonsi/si_shader.h
parent0d6d25475d7c3ddc04349afee8e11b67d5ecf726 (diff)
radeonsi/gfx9: add support for monolithic merged LS-HS
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_shader.h')
-rw-r--r--src/gallium/drivers/radeonsi/si_shader.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeonsi/si_shader.h b/src/gallium/drivers/radeonsi/si_shader.h
index 2d660ac6cc1..299cbab54c9 100644
--- a/src/gallium/drivers/radeonsi/si_shader.h
+++ b/src/gallium/drivers/radeonsi/si_shader.h
@@ -355,6 +355,8 @@ union si_shader_part_key {
/* For merged stages such as LS-HS, HS input VGPRs are first. */
unsigned num_merged_next_stage_vgprs:3;
unsigned last_input:4;
+ /* Prologs for monolithic shaders shouldn't set EXEC. */
+ unsigned is_monolithic:1;
} vs_prolog;
struct {
struct si_vs_epilog_bits states;