diff options
Diffstat (limited to 'include/cru/osx/graphics/quartz/Convert.hpp')
-rw-r--r-- | include/cru/osx/graphics/quartz/Convert.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/cru/osx/graphics/quartz/Convert.hpp b/include/cru/osx/graphics/quartz/Convert.hpp new file mode 100644 index 00000000..9706dc00 --- /dev/null +++ b/include/cru/osx/graphics/quartz/Convert.hpp @@ -0,0 +1,9 @@ +#pragma once +#include "cru/platform/Matrix.hpp" + +#include <CoreGraphics/CoreGraphics.h> + +namespace cru::platform::graphics::osx::quartz { + CGAffineTransform Convert(const Matrix& matrix); + Matrix Convert(const CGAffineTransform& matrix); +} |