-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Open
Description
I suspect it can be all removed from OF Core
All usages I know can be handled by the OS, at least in iOS / macOS
removing this would simplify lots of I suppose unneded things and make it easier to have retina working for ex.
opinions? @openframeworks/core @openframeworks/2d-3d
enum ofOrientation: short{
/// \brief Represents the default screen orientation.
OF_ORIENTATION_DEFAULT = 1,
/// \brief Represents a screen rotated 180 degrees, also known as upside-down.
OF_ORIENTATION_180 = 2,
/// \brief Represents a screen rotated 90 degrees clockwise.
OF_ORIENTATION_90_LEFT = 3,
/// \brief Represents a screen rotated 90 degrees counter-clockwise.
OF_ORIENTATION_90_RIGHT = 4,
/// \brief Represents an unknown orientation.
OF_ORIENTATION_UNKNOWN = 5
};
Metadata
Metadata
Assignees
Labels
No labels