diff options
| author | crupest <crupest@outlook.com> | 2022-05-07 20:53:57 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-07 20:53:57 +0800 |
| commit | ee5aa17e44cb36b386e89032cab96caf87b5b524 (patch) | |
| tree | a7cef6c60f55e3870900016e0f1a4efe578efbf0 /include/cru/platform/graphics/Painter.h | |
| parent | 5bc684dcc1d121bf6e02d0800174c7977c72d101 (diff) | |
| parent | cb850a6d6d13fc5b2c0cdd8773e368e23252c459 (diff) | |
| download | cru-ee5aa17e44cb36b386e89032cab96caf87b5b524.tar.gz cru-ee5aa17e44cb36b386e89032cab96caf87b5b524.tar.bz2 cru-ee5aa17e44cb36b386e89032cab96caf87b5b524.zip | |
Merge pull request #54 from crupest/create-image
Diffstat (limited to 'include/cru/platform/graphics/Painter.h')
| -rw-r--r-- | include/cru/platform/graphics/Painter.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/cru/platform/graphics/Painter.h b/include/cru/platform/graphics/Painter.h index 38ff8849..4268133e 100644 --- a/include/cru/platform/graphics/Painter.h +++ b/include/cru/platform/graphics/Painter.h @@ -3,6 +3,10 @@ namespace cru::platform::graphics { +/** + * \brief Painter is a object to paint on something like window, bitmap and etc. + * \remarks Remember to call EndDraw() when you are done with painting. + */ struct CRU_PLATFORM_GRAPHICS_API IPainter : virtual IPlatformResource { virtual Matrix GetTransform() = 0; virtual void SetTransform(const Matrix& matrix) = 0; |
