From 70b84920befb3121b58e22e176267a63a8b1317a Mon Sep 17 00:00:00 2001 From: Gert Wollny Date: Thu, 7 May 2020 00:01:48 +0200 Subject: [PATCH] r600/sfn: Take FOGC, and backcolors into account im GS outputs Signed-off-by: Gert Wollny Reviewed-by: Reviewed-by: Dave Airlie Part-of: --- src/gallium/drivers/r600/sfn/sfn_shader_geometry.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gallium/drivers/r600/sfn/sfn_shader_geometry.cpp b/src/gallium/drivers/r600/sfn/sfn_shader_geometry.cpp index f9993c34120..1b215b471e3 100644 --- a/src/gallium/drivers/r600/sfn/sfn_shader_geometry.cpp +++ b/src/gallium/drivers/r600/sfn/sfn_shader_geometry.cpp @@ -81,11 +81,14 @@ bool GeometryShaderFromNir::do_process_inputs(nir_variable *input) if (input->data.location == VARYING_SLOT_POS || input->data.location == VARYING_SLOT_PSIZ || + input->data.location == VARYING_SLOT_FOGC || input->data.location == VARYING_SLOT_CLIP_VERTEX || input->data.location == VARYING_SLOT_CLIP_DIST0 || input->data.location == VARYING_SLOT_CLIP_DIST1 || input->data.location == VARYING_SLOT_COL0 || input->data.location == VARYING_SLOT_COL1 || + input->data.location == VARYING_SLOT_BFC0 || + input->data.location == VARYING_SLOT_BFC1 || (input->data.location >= VARYING_SLOT_VAR0 && input->data.location <= VARYING_SLOT_VAR31) || (input->data.location >= VARYING_SLOT_TEX0 && -- 2.30.2