1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-31 18:41:20 +00:00

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

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;
}
}