mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-09-04 17:15:23 -06:00
38 lines
445 B
C++
38 lines
445 B
C++
#include "glyph.h"
|
|
|
|
void FDraw::BeginOp()
|
|
{
|
|
}
|
|
|
|
bool FDraw::ClipOp(const Rect& r)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool FDraw::ClipoffOp(const Rect& r)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool FDraw::IntersectClipOp(const Rect& r)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool FDraw::ExcludeClipOp(const Rect& r)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool FDraw::IsPaintingOp(const Rect& r) const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void FDraw::OffsetOp(Point p)
|
|
{
|
|
}
|
|
|
|
void FDraw::EndOp()
|
|
{
|
|
}
|