mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-03-10 15:38:08 +01:00
Revert "gl: Fix vertical blit scaling factor"
This reverts commit d64334b02dcc5ae3fea70e25b0e7bdb5e656448b.
This commit is contained in:
parent
7a02d6e4ed
commit
604e42bde8
|
|
@ -1082,7 +1082,7 @@ namespace gl
|
|||
//The implementation here adds the inverse scaled clip dimensions onto the source to completely bypass final clipping step
|
||||
|
||||
float scale_x = (f32)dst.width / src.width;
|
||||
float scale_y = (f32)dst.height / src.slice_h;
|
||||
float scale_y = (f32)dst.height / src.height;
|
||||
|
||||
//Clip offset is unused if the clip offsets are reprojected onto the source
|
||||
position2i clip_offset = {0, 0};//{ dst.clip_x, dst.clip_y };
|
||||
|
|
|
|||
Loading…
Reference in a new issue