mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-29 23:10:11 +01:00
aco: fix emitting stream output with tess eval shaders
Fixes dEQP-VK.transform_feedback.simple.winding_patch_list_12. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Timur Kristóf <timur.kristof@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4553>
This commit is contained in:
parent
91aa596ca7
commit
11faaf646d
1 changed files with 1 additions and 1 deletions
|
|
@ -10199,7 +10199,7 @@ static void emit_stream_output(isel_context *ctx,
|
|||
|
||||
Temp out[4];
|
||||
bool all_undef = true;
|
||||
assert(ctx->stage == vertex_vs || ctx->stage == gs_copy_vs);
|
||||
assert(ctx->stage & hw_vs);
|
||||
for (unsigned i = 0; i < num_comps; i++) {
|
||||
out[i] = ctx->outputs.temps[loc * 4 + start + i];
|
||||
all_undef = all_undef && !out[i].id();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue