exynos: fix coordinate computation in g2d_copy
The right-bottom register isn't set correctly. Looks like a copy-and-paste error. Signed-off-by: Tobias Jakobi <tjakobi@math.uni-bielefeld.de> Signed-off-by: Inki Dae <inki.dae@samsung.com>main
parent
4fddc92e04
commit
63f51fc4d3
|
@ -382,7 +382,7 @@ int g2d_copy(struct g2d_context *ctx, struct g2d_image *src,
|
|||
g2d_add_cmd(ctx, DST_LEFT_TOP_REG, pt.val);
|
||||
pt.val = 0;
|
||||
pt.data.x = dst_x + w;
|
||||
pt.data.y = dst_x + h;
|
||||
pt.data.y = dst_y + h;
|
||||
g2d_add_cmd(ctx, DST_RIGHT_BOTTOM_REG, pt.val);
|
||||
|
||||
rop4.val = 0;
|
||||
|
|
Loading…
Reference in New Issue