Removed DUMPs

git-svn-id: svn://ultimatepp.org/upp/trunk@781 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2009-01-17 12:52:45 +00:00
parent f5e7da9893
commit f5eca158c8
6 changed files with 0 additions and 7 deletions

View file

@ -2,8 +2,6 @@
NAMESPACE_UPP
#define LTIMING(x) RTIMING(x)
void BufferPainter::ClearOp(const RGBA& color)
{
Upp::Fill(~buffer, color, buffer.GetLength());

View file

@ -73,7 +73,6 @@ struct sMakeCharOutline : LRUCache<String, FontChar>::Maker {
FontChar Key() const { return fc; }
int Make(String& s) const {
RTIMING("Make");
static ScreenDraw w;
w.SetFont(fc.fnt);
GLYPHMETRICS gm;

View file

@ -117,7 +117,6 @@ void Painter::Paint(const Painting& pic)
sGet(w, ss);
sGet(c, ss);
Stroke(w, c);
DDUMP((Color)c);
break;
case PAINTING_STROKE_IMAGE:
sGet(w, ss);

View file

@ -60,7 +60,6 @@ bool Painter::IsPaintingOp(const Rect& r) const
void Painter::DrawRectOp(int x, int y, int cx, int cy, Color color)
{
RTIMING("Rect");
RectPath(x, y, cx, cy);
Fill(color);
}

View file

@ -93,7 +93,6 @@ void PaintingPainter::StrokeOp(double width, const RGBA& color)
Put(PAINTING_STROKE_SOLID);
Putf(width);
Put(color);
DDUMP(Color(color));
}
void PaintingPainter::StrokeOp(double width, const Image& image, const Matrix2D& transsrc, dword flags)

View file

@ -4,7 +4,6 @@ NAMESPACE_UPP
void Painter::TextOp(double x, double y, const wchar *text, Font fnt, int n, double *dx)
{
RTIMING("Text");
FontInfo fi = fnt.Info();
if(n < 0)
n = wstrlen(text);