Skip to content

Commit

Permalink
Merge pull request godotengine#91059 from BastiaanOlij/fix_multiview_…
Browse files Browse the repository at this point in the history
…copy

Fix issue with copy shader not working in multiview
  • Loading branch information
akien-mga committed Apr 23, 2024
2 parents 5594bca + 226ca2f commit a754bbc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

Expand Down

0 comments on commit a754bbc

Please sign in to comment.