We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd21bbe commit 5d9b170Copy full SHA for 5d9b170
include/SDL3/SDL_surface.h
@@ -96,10 +96,10 @@ typedef enum SDL_ScaleMode
96
*/
97
typedef enum SDL_FlipMode
98
{
99
- SDL_FLIP_NONE, /**< Do not flip */
100
- SDL_FLIP_HORIZONTAL, /**< flip horizontally */
101
- SDL_FLIP_VERTICAL, /**< flip vertically */
102
- SDL_FLIP_HORIZONTAL_AND_VERTICAL, /**< flip horizontally and vertically (not a diagonal flip) */
+ SDL_FLIP_NONE, /**< Do not flip */
+ SDL_FLIP_HORIZONTAL, /**< flip horizontally */
+ SDL_FLIP_VERTICAL, /**< flip vertically */
+ SDL_FLIP_HORIZONTAL_AND_VERTICAL = (SDL_FLIP_HORIZONTAL | SDL_FLIP_VERTICAL) /**< flip horizontally and vertically (not a diagonal flip) */
103
} SDL_FlipMode;
104
105
#ifndef SDL_INTERNAL
0 commit comments