Merge pull request #91059 from BastiaanOlij/fix_multiview_copy

Fix issue with copy shader not working in multiview
This commit is contained in:
Rémi Verschelde 2024-04-23 19:12:24 +02:00
commit a754bbc565
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -57,7 +57,7 @@ void main() {
}
if (bool(params.flags & FLAG_USE_SRC_SECTION)) {
uv_interp = params.section.xy + uv_interp * params.section.zw;
uv_interp.xy = params.section.xy + uv_interp.xy * params.section.zw;
}
}