mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-13 16:20:18 +01:00
tgsi_to_nir: Translate TGSI_INTERPOLATE_COLOR as INTERP_MODE_NONE
Translating TGSI_INTERPOLATE_COLOR as INTERP_MODE_SMOOTH made
it for drivers impossible to have flatshaded color inputs.
Translate it to INTERP_MODE_NONE which drivers interpret as
smooth or flat depending on flatshading state.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=111467
Fixes: 770faf54 ("tgsi_to_nir: Improve interpolation modes.")
Signed-off-by: Danylo Piliaiev <danylo.piliaiev@globallogic.com>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
544b156968
commit
175c32e9bd
1 changed files with 1 additions and 1 deletions
|
|
@ -218,7 +218,7 @@ ttn_translate_interp_mode(unsigned tgsi_interp)
|
|||
case TGSI_INTERPOLATE_PERSPECTIVE:
|
||||
return INTERP_MODE_SMOOTH;
|
||||
case TGSI_INTERPOLATE_COLOR:
|
||||
return INTERP_MODE_SMOOTH;
|
||||
return INTERP_MODE_NONE;
|
||||
default:
|
||||
unreachable("bad TGSI interpolation mode");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue