git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@71977
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
2012-06-10 Cedric Bail
* Limit the updated region to fit in CPU cache for Pipe rendering.
+
+2012-06-12 ChunEon Park
+
+ * Fixed simple line drawing on s/w backened. Unmatched loop scope caused the
+ destination buffer pointer march in place.
# endif
#endif
pfunc(0, 255, color, p);
- }
#ifdef HAVE_PIXMAN
# ifdef PIXMAN_LINE
- pixman_x_position += x_unit;
- pixman_y_position += 1;
+ pixman_x_position += x_unit;
+ pixman_y_position += 1;
# endif
#endif
- p += dstw;
+ p += dstw;
+ }
}
}