.cosmetics

git-svn-id: svn://ultimatepp.org/upp/trunk@6056 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2013-05-12 14:15:14 +00:00
parent d8cc64acac
commit 1de2c9e1ee
2 changed files with 0 additions and 6 deletions

View file

@ -264,7 +264,6 @@ void XmlizeBySerialize(XmlIO& xio, T& x)
}
}
void StoreJsonValue(XmlIO& xio, const Value& v);
Value LoadJsonValue(const XmlNode& n);

View file

@ -41,8 +41,6 @@ void BufferPainter::FinishMask()
Buffer<ClippingLine>& cl = clip.Top();
for(int y = 0; y < ib.GetHeight(); y++)
if(creating || !cl[y].IsEmpty()) {
bool full = true;
bool empty = true;
int c0 = 0;
int c256 = 0;
const RGBA *s = ib[y];
@ -55,7 +53,6 @@ void BufferPainter::FinishMask()
c0++;
if(mode == MODE_SUBPIXEL)
c0 += 2;
full = false;
}
else
if(val == 256) {
@ -63,7 +60,6 @@ void BufferPainter::FinishMask()
c256++;
if(mode == MODE_SUBPIXEL)
c256 += 2;
empty = false;
}
else {
if(c256) t = sSpan(t, 128, c256);
@ -73,7 +69,6 @@ void BufferPainter::FinishMask()
*t++ = val;
*t++ = val;
}
full = empty = false;
}
s++;
}