diff options
author | crupest <crupest@outlook.com> | 2021-08-24 00:58:57 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-08-24 00:58:57 +0800 |
commit | fdafa45b7d28a191439b0c0deabff94b0d1a7094 (patch) | |
tree | d7ebe04d5ce304ed99d13fdff55d94b5a4ef014b /include/cru/osx | |
parent | 100c2ae5cd7b815dc9accca0fa9ceaca2f5d1020 (diff) | |
download | cru-fdafa45b7d28a191439b0c0deabff94b0d1a7094.tar.gz cru-fdafa45b7d28a191439b0c0deabff94b0d1a7094.tar.bz2 cru-fdafa45b7d28a191439b0c0deabff94b0d1a7094.zip |
...
Diffstat (limited to 'include/cru/osx')
-rw-r--r-- | include/cru/osx/graphics/quartz/Convert.hpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/include/cru/osx/graphics/quartz/Convert.hpp b/include/cru/osx/graphics/quartz/Convert.hpp index 9706dc00..89ade584 100644 --- a/include/cru/osx/graphics/quartz/Convert.hpp +++ b/include/cru/osx/graphics/quartz/Convert.hpp @@ -4,6 +4,9 @@ #include <CoreGraphics/CoreGraphics.h> namespace cru::platform::graphics::osx::quartz { - CGAffineTransform Convert(const Matrix& matrix); - Matrix Convert(const CGAffineTransform& matrix); -} +CGAffineTransform Convert(const Matrix& matrix); +Matrix Convert(const CGAffineTransform& matrix); + +CGRect Convert(const Rect& rect); +Rect Convert(const CGRect& rect); +} // namespace cru::platform::graphics::osx::quartz |