diff --git a/uppsrc/Painter/BufferPainter.cpp b/uppsrc/Painter/BufferPainter.cpp index cfd750aaf..52335a4d4 100644 --- a/uppsrc/Painter/BufferPainter.cpp +++ b/uppsrc/Painter/BufferPainter.cpp @@ -2,8 +2,6 @@ NAMESPACE_UPP -#define LTIMING(x) RTIMING(x) - void BufferPainter::ClearOp(const RGBA& color) { Upp::Fill(~buffer, color, buffer.GetLength()); diff --git a/uppsrc/Painter/FontWin32.cpp b/uppsrc/Painter/FontWin32.cpp index f3e7d05c2..7222db8a1 100644 --- a/uppsrc/Painter/FontWin32.cpp +++ b/uppsrc/Painter/FontWin32.cpp @@ -73,7 +73,6 @@ struct sMakeCharOutline : LRUCache::Maker { FontChar Key() const { return fc; } int Make(String& s) const { - RTIMING("Make"); static ScreenDraw w; w.SetFont(fc.fnt); GLYPHMETRICS gm; diff --git a/uppsrc/Painter/PaintPainting.icpp b/uppsrc/Painter/PaintPainting.icpp index 970f0a164..67b99a57f 100644 --- a/uppsrc/Painter/PaintPainting.icpp +++ b/uppsrc/Painter/PaintPainting.icpp @@ -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); diff --git a/uppsrc/Painter/Painter.cpp b/uppsrc/Painter/Painter.cpp index 14348ec7f..3c93049ed 100644 --- a/uppsrc/Painter/Painter.cpp +++ b/uppsrc/Painter/Painter.cpp @@ -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); } diff --git a/uppsrc/Painter/Painting.cpp b/uppsrc/Painter/Painting.cpp index f32447785..2ddeb98f3 100644 --- a/uppsrc/Painter/Painting.cpp +++ b/uppsrc/Painter/Painting.cpp @@ -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) diff --git a/uppsrc/Painter/Text.cpp b/uppsrc/Painter/Text.cpp index f9254da8d..4a426b7fe 100644 --- a/uppsrc/Painter/Text.cpp +++ b/uppsrc/Painter/Text.cpp @@ -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);