Revert "gl: Fix vertical blit scaling factor"

This reverts commit d64334b02dcc5ae3fea70e25b0e7bdb5e656448b.
This commit is contained in:
kd-11 2017-03-18 20:00:37 +03:00
parent 7a02d6e4ed
commit 604e42bde8

View file

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