diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libcamera/transform.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/libcamera/transform.h b/include/libcamera/transform.h index 2a6838c7..14f1db0e 100644 --- a/include/libcamera/transform.h +++ b/include/libcamera/transform.h @@ -11,6 +11,8 @@ namespace libcamera { +enum class Orientation; + enum class Transform : int { Identity = 0, Rot0 = Identity, @@ -69,6 +71,8 @@ constexpr Transform operator~(Transform t) } Transform transformFromRotation(int angle, bool *success = nullptr); +Transform transformFromOrientation(const Orientation &orientation); +Orientation transformToOrientation(const Transform &transform); const char *transformToString(Transform t); |