aboutsummaryrefslogtreecommitdiff
path: root/include/cru/osx/graphics/quartz/Convert.hpp
blob: 9706dc0088db77c839c6766a0f0cdc92fe4bf287 (plain)
1
2
3
4
5
6
7
8
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);
}