mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 01:50:10 +01:00
radeonsi: assume that a TES without POSITION precedes GS
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
This commit is contained in:
parent
53648050a5
commit
4b93ba542c
1 changed files with 2 additions and 1 deletions
|
|
@ -1275,7 +1275,8 @@ static void si_parse_next_shader_property(const struct tgsi_shader_info *info,
|
|||
break;
|
||||
|
||||
case PIPE_SHADER_TESS_EVAL:
|
||||
if (next_shader == PIPE_SHADER_GEOMETRY)
|
||||
if (next_shader == PIPE_SHADER_GEOMETRY ||
|
||||
!info->writes_position)
|
||||
key->as_es = 1;
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue