vulkan: Changed SDL_WINDOW_VULKAN value to match Tizen's fork.

This commit is contained in:
Ryan C. Gordon 2017-09-03 13:20:33 -04:00
parent 167398b363
commit a12989f94c
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ typedef enum
SDL_WINDOW_UTILITY = 0x00020000, /**< window should be treated as a utility window */
SDL_WINDOW_TOOLTIP = 0x00040000, /**< window should be treated as a tooltip */
SDL_WINDOW_POPUP_MENU = 0x00080000, /**< window should be treated as a popup menu */
SDL_WINDOW_VULKAN = 0x00100000 /**< window usable for Vulkan surface */
SDL_WINDOW_VULKAN = 0x10000000 /**< window usable for Vulkan surface */
} SDL_WindowFlags;
/**