Hi Mike,
that's what I just finished to test:)
It fixes the horizontal lines, but the vertical one is still
visible.
Actually in my patch I also (blindly) changed the other instance of
FillRectangle()
but i was not sure about that
Here it is:
impl->surface->FillRectangle (impl->surface,
- points->x, points->y, 1, 1);
+ points->x, points->y, 2, 2);ciao, Davide On Thu, Jul 06, 2006 at 04:58:50PM -0700, Mike Emmel wrote: > I think we need to expand FillRect by +1 > > Here is a propsed patch see if it works for you. > > Index: gdkdrawable-directfb.c > =================================================================== > RCS file: /cvs/gnome/gtk+/gdk/directfb/gdkdrawable-directfb.c,v > retrieving revision 1.4 > diff -u -r1.4 gdkdrawable-directfb.c > --- gdkdrawable-directfb.c 14 Jun 2006 21:54:25 -0000 1.4 > +++ gdkdrawable-directfb.c 6 Jul 2006 23:57:53 -0000 > @@ -445,8 +445,8 @@ > impl->surface->FillRectangle (impl->surface, > region->x1, > region->y1, > - region->x2 - region->x1, > - region->y2 - region->y1); > + region->x2 - region->x1+1, > + region->y2 - region->y1+1); > } > } >
signature.asc
Description: Digital signature
_______________________________________________ directfb-dev mailing list [email protected] http://mail.directfb.org/cgi-bin/mailman/listinfo/directfb-dev
