https://bugs.freedesktop.org/show_bug.cgi?id=102904
--- Comment #2 from Kenneth Graunke <[email protected]> ---
In fs-out-overlap.shader_test, we have this:
layout(location = 0) out vec2 a;
// consumes Z/W components
layout(location = 0, component = 1) out vec2 b;
Before the patch, we would do:
assigned[assigned_attr] = var;
assigned_attr++;
on the first variable. But with the patch, we stop doing this, and fail to
record the first variable - because there's no used location. So, on the
second variable, we look through the existing assigned attributes, and see
nothing, and fail to raise the error.
I think we just need to move the code back.
--
You are receiving this mail because:
You are the QA Contact for the bug._______________________________________________
mesa-dev mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-dev