Paul Rohr wrote:
> we may want to check the
> math to see if this is a side effect of Mike Nordell's recent work to
speed
> up the drawline calls.
Crap, it is. Thanks for the heads up.
I can't commit right now. Can someone please change
nLineWidth + (!bVert ? x2 - x1 : 0),
nLineWidth + ( bVert ? y2 - y1 : 0));
to
nLineWidth + (!bVert ? x2 - x1 - 1: 0),
nLineWidth + ( bVert ? y2 - y1 - 1: 0));
In the fillRect call in GR_Win32Graphics::drawLine ? Thanks.
/Mike
- commit: Fix border drawing Thomas Fletcher
- Re: commit: Fix border drawing Paul Rohr
- Re: commit: Fix border drawing James Montgomerie
- Re: commit: Fix border drawing Thomas Fletcher
- Re: commit: Fix border drawing Paul Rohr
- Re: commit: Fix border drawing Paul Rohr
- Re: commit: Fix border drawing James Montgomerie
- Re: commit: Fix border drawing Mike Nordell
- Re: commit: Fix border drawing Paul Rohr
- Re: commit: Fix border drawing James Montgomerie
- Re: commit: Fix border drawing Joaquin Cuenca Abela
- Re: commit: Fix border drawing Thomas Fletcher
- Re: commit: Fix border drawing James Montgomerie
