zink: don't propagate psiz in quads emulation gs

this is pointless

haha.

cc: mesa-stable

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23240>
This commit is contained in:
Mike Blumenkrantz
2023-05-25 15:39:50 -04:00
committed by Marge Bot
parent 09678079c3
commit b772499a09
+3 -1
View File
@@ -1241,7 +1241,9 @@ zink_create_quads_emulation_gs(const nir_shader_compiler_options *options,
/* input vars can't be created for those */
if (var->data.location == VARYING_SLOT_LAYER ||
var->data.location == VARYING_SLOT_VIEW_INDEX)
var->data.location == VARYING_SLOT_VIEW_INDEX ||
/* psiz not needed for quads */
var->data.location == VARYING_SLOT_PSIZ)
continue;
char name[100];