Fix issue with copy shader not working in multiview

This commit is contained in:
Bastiaan Olij 2024-04-23 21:46:39 +10:00
parent 7abe0c6014
commit 226ca2f04c
1 changed files with 1 additions and 1 deletions

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