From 19e600254faf3e7f85dc47929f28acc63d37283e Mon Sep 17 00:00:00 2001 From: ChunEon Park Date: Wed, 12 Dec 2012 12:39:32 +0000 Subject: [PATCH] evas/gl - actually, this is correct. SVN revision: 80758 --- .../evas/engines/gl_common/evas_gl_line.c | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/src/modules/evas/engines/gl_common/evas_gl_line.c b/src/modules/evas/engines/gl_common/evas_gl_line.c index 9d7c258375..4a8c1c31ae 100644 --- a/src/modules/evas/engines/gl_common/evas_gl_line.c +++ b/src/modules/evas/engines/gl_common/evas_gl_line.c @@ -29,22 +29,15 @@ evas_gl_common_line_draw(Evas_Engine_GL_Context *gc, int x1, int y1, int x2, int cw = gc->dc->clip.w; ch = gc->dc->clip.h; //Increment pixels since the gl line origin position is slightly different. - if (x1 == x2) + if ((gc->rot == 0) || (gc->rot == 90)) { - if ((gc->rot == 0) ||(gc->rot == 90)) - { - x1++; - x2++; - } + x1++; + x2++; } - - if (y1 == y2) + if ((gc->rot == 90) || (gc->rot == 180)) { - if ((gc->rot == 90) || (gc->rot == 180)) - { - y1++; - y2++; - } + y1++; + y2++; } evas_gl_common_context_line_push(gc, x1, y1, x2, y2,