Skip to content

Commit 226ca2f

Browse files
committed
Fix issue with copy shader not working in multiview
1 parent 7abe0c6 commit 226ca2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

servers/rendering/renderer_rd/shaders/effects/copy_to_fb.glsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ void main() {
5757
}
5858

5959
if (bool(params.flags & FLAG_USE_SRC_SECTION)) {
60-
uv_interp = params.section.xy + uv_interp * params.section.zw;
60+
uv_interp.xy = params.section.xy + uv_interp.xy * params.section.zw;
6161
}
6262
}
6363

0 commit comments

Comments
 (0)