mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-21 06:45:39 -06:00
Removed DUMPs
git-svn-id: svn://ultimatepp.org/upp/trunk@781 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
f5e7da9893
commit
f5eca158c8
6 changed files with 0 additions and 7 deletions
|
|
@ -2,8 +2,6 @@
|
|||
|
||||
NAMESPACE_UPP
|
||||
|
||||
#define LTIMING(x) RTIMING(x)
|
||||
|
||||
void BufferPainter::ClearOp(const RGBA& color)
|
||||
{
|
||||
Upp::Fill(~buffer, color, buffer.GetLength());
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue