aboutsummaryrefslogtreecommitdiff
path: root/include/cru/platform/painter.hpp
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2019-04-01 15:51:56 +0800
committercrupest <crupest@outlook.com>2019-04-01 15:51:56 +0800
commit9e382d2175c6706e69b734480e26032e16d0bde4 (patch)
tree2702ea4dedabd5fad4be7b0f5eea1af7b7bda121 /include/cru/platform/painter.hpp
parent3e89aa733587043645f5fda72596e4ff3cd21d2a (diff)
downloadcru-9e382d2175c6706e69b734480e26032e16d0bde4.tar.gz
cru-9e382d2175c6706e69b734480e26032e16d0bde4.tar.bz2
cru-9e382d2175c6706e69b734480e26032e16d0bde4.zip
...
Diffstat (limited to 'include/cru/platform/painter.hpp')
-rw-r--r--include/cru/platform/painter.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/cru/platform/painter.hpp b/include/cru/platform/painter.hpp
index 4ad09247..77ca5098 100644
--- a/include/cru/platform/painter.hpp
+++ b/include/cru/platform/painter.hpp
@@ -8,8 +8,10 @@ struct Brush;
struct Geometry;
struct Painter : virtual Interface {
- virtual void StrokeGeometry(Geometry* geometry, Brush* brush, float width) = 0;
+ virtual void StrokeGeometry(Geometry* geometry, Brush* brush,
+ float width) = 0;
virtual void FillGeometry(Geometry* geometry, Brush* brush) = 0;
virtual void EndDraw() = 0;
+ virtual bool IsDisposed() = 0;
};
} // namespace cru::platform