mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-18 20:18:59 +00:00
Be explicit that SDL_FLIP_HORIZONTAL_AND_VERTICAL combines horizontal and vertical flipping
Closes https://github.com/libsdl-org/SDL/pull/13821
This commit is contained in:
parent
cd21bbe796
commit
5d9b170a3d
1 changed files with 4 additions and 4 deletions
|
|
@ -96,10 +96,10 @@ typedef enum SDL_ScaleMode
|
|||
*/
|
||||
typedef enum SDL_FlipMode
|
||||
{
|
||||
SDL_FLIP_NONE, /**< Do not flip */
|
||||
SDL_FLIP_HORIZONTAL, /**< flip horizontally */
|
||||
SDL_FLIP_VERTICAL, /**< flip vertically */
|
||||
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) */
|
||||
} SDL_FlipMode;
|
||||
|
||||
#ifndef SDL_INTERNAL
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue