a tweak on the fix in 3366, but in that earlier change, I mistakenly changed
> to >=. This CL just restores the compare to >
git-svn-id: http://skia.googlecode.com/svn/trunk@3400
2bbb7eff-a529-9590-31e7-
b0007b416f81
scaleStop = 64;
}
#else
- if (istop >= clip->fRight) {
+ if (istop > clip->fRight) {
istop = clip->fRight;
scaleStop = 0; // so we don't draw this last column
}
scaleStop = 64; // so we don't draw this last row
}
#else
- if (istop >= clip->fBottom) {
+ if (istop > clip->fBottom) {
istop = clip->fBottom;
scaleStop = 0; // so we don't draw this last row
}