From e8c3c1358ecaf4e90f7d43762357ae6f8e2022b6 Mon Sep 17 00:00:00 2001 From: Tobias Jakobi Date: Sun, 1 Jun 2014 18:04:06 +0200 Subject: exynos: fix scaling factor computation in g2d_copy_with_scale When division of source and destination width yields the scaling factor for the x-coordinate, then it should be source/destination _height_ for y. Signed-off-by: Tobias Jakobi Signed-off-by: Inki Dae --- exynos/exynos_fimg2d.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'exynos') diff --git a/exynos/exynos_fimg2d.c b/exynos/exynos_fimg2d.c index a5659101..fc281b6e 100644 --- a/exynos/exynos_fimg2d.c +++ b/exynos/exynos_fimg2d.c @@ -451,7 +451,7 @@ int g2d_copy_with_scale(struct g2d_context *ctx, struct g2d_image *src, else { scale = 1; scale_x = (double)src_w / (double)dst_w; - scale_y = (double)src_w / (double)dst_h; + scale_y = (double)src_h / (double)dst_h; } if (src_x + src_w > src->width) -- cgit v1.2.3-54-g00ecf