mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-09-05 01:24:54 -06:00
29 lines
315 B
C++
29 lines
315 B
C++
#include "glyph.h"
|
|
|
|
void FDraw::BeginOp()
|
|
{
|
|
}
|
|
|
|
bool FDraw::ClipOp(const Rect& r)
|
|
{
|
|
}
|
|
|
|
bool FDraw::ClipoffOp(const Rect& r)
|
|
{
|
|
}
|
|
|
|
bool FDraw::IntersectClipOp(const Rect& r)
|
|
{
|
|
}
|
|
|
|
bool FDraw::IsPaintingOp(const Rect& r) const
|
|
{
|
|
}
|
|
|
|
void FDraw::OffsetOp(Point p)
|
|
{
|
|
}
|
|
|
|
void FDraw::EndOp()
|
|
{
|
|
}
|