summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2014-12-11 21:28:12 -0800
committerEric Anholt <[email protected]>2014-12-11 23:52:34 -0800
commit92b85fba89851b85e7a50b1f6f90c05ecaacdcd5 (patch)
treec75e95d68041630d48950c1b461fbe6381356d6f
parent5b3c0d999c38ef51ece422010cdb836fbbaffe0e (diff)
vc4: Consider FS backface color loads as color inputs as well.
This fixes flatshading of backface color in 4 of the piglit interpolation tests.
-rw-r--r--src/gallium/drivers/vc4/vc4_program.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gallium/drivers/vc4/vc4_program.c b/src/gallium/drivers/vc4/vc4_program.c
index cea2a490eca..b48c2c4c5c9 100644
--- a/src/gallium/drivers/vc4/vc4_program.c
+++ b/src/gallium/drivers/vc4/vc4_program.c
@@ -2210,8 +2210,11 @@ vc4_get_compiled_shader(struct vc4_context *vc4, enum qstage stage,
if (sem->semantic == (uint8_t)~0)
continue;
- if (sem->semantic == TGSI_SEMANTIC_COLOR)
+ if (sem->semantic == TGSI_SEMANTIC_COLOR ||
+ sem->semantic == TGSI_SEMANTIC_BCOLOR) {
shader->color_inputs |= (1 << shader->num_inputs);
+ }
+
shader->input_semantics[shader->num_inputs] = *sem;
shader->num_inputs++;
}