ultimatepp/uppdev/Glyph/TestDraw.cpp
cxl dfb9f23fa6 .uppdev
git-svn-id: svn://ultimatepp.org/upp/trunk@6063 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2013-05-13 09:26:34 +00:00

11 lines
220 B
C++

#include "glyph.h"
void TestDraw::PutImage(Point p, const Image& m, const Rect& src)
{
draw->DrawImage(p.x, p.y, m, src);
}
void TestDraw::PutRect(const Rect& r, Color color)
{
draw->DrawRect(r, color);
}