mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 22:02:58 -06:00
13 lines
253 B
C++
13 lines
253 B
C++
#include "glyph.h"
|
|
|
|
#define LTIMING(x) RTIMING(x)
|
|
|
|
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);
|
|
}
|