aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSamuel Pitoiset <[email protected]>2019-07-11 21:35:46 +0200
committerSamuel Pitoiset <[email protected]>2019-07-11 21:44:44 +0200
commita7b7e940856c406ab4bdb3b94c7598d8db031451 (patch)
treeddcc77e73941e5488697fcface9a015c3833792b /src
parente1fe98cc7d358913222b8b6156aff13950a4cec1 (diff)
radv: only enable the GS copy shader stage if GS is enabled
Ooops. Signed-off-by: Samuel Pitoiset <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/amd/vulkan/radv_pipeline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_pipeline.c b/src/amd/vulkan/radv_pipeline.c
index 5c97aae39a8..9b68650fd36 100644
--- a/src/amd/vulkan/radv_pipeline.c
+++ b/src/amd/vulkan/radv_pipeline.c
@@ -3884,7 +3884,7 @@ radv_compute_vgt_shader_stages_en(const struct radv_pipeline *pipeline)
if (radv_pipeline_has_ngg(pipeline)) {
stages |= S_028B54_PRIMGEN_EN(1);
- } else {
+ } else if (radv_pipeline_has_gs(pipeline)) {
stages |= S_028B54_VS_EN(V_028B54_VS_STAGE_COPY_SHADER);
}