mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
radeonsi: fix incorrect parentheses around VS-PS varying elimination
I don't know if it caused issues.
Cc: 18.0 18.1 <mesa-stable@lists.freedesktop.org>
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
(cherry picked from commit 92ea9329e5)
This commit is contained in:
parent
3cb16ce7e9
commit
36e65cc47f
1 changed files with 2 additions and 2 deletions
|
|
@ -1227,8 +1227,8 @@ static void si_shader_selector_key_hw_vs(struct si_context *sctx,
|
|||
uint64_t inputs_read = 0;
|
||||
|
||||
/* ignore POSITION, PSIZE */
|
||||
outputs_written &= ~((1ull << si_shader_io_get_unique_index(TGSI_SEMANTIC_POSITION, 0) |
|
||||
(1ull << si_shader_io_get_unique_index(TGSI_SEMANTIC_PSIZE, 0))));
|
||||
outputs_written &= ~((1ull << si_shader_io_get_unique_index(TGSI_SEMANTIC_POSITION, 0)) |
|
||||
(1ull << si_shader_io_get_unique_index(TGSI_SEMANTIC_PSIZE, 0)));
|
||||
|
||||
if (!ps_disabled) {
|
||||
inputs_read = ps->inputs_read;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue