Commit 32406a59 authored by Sam Lantinga's avatar Sam Lantinga

Renumbered the renderer flags

parent d6279390
...@@ -151,11 +151,10 @@ typedef enum ...@@ -151,11 +151,10 @@ typedef enum
*/ */
typedef enum typedef enum
{ {
SDL_RENDERER_PRESENTVSYNC = 0x00000020, /**< Present is synchronized SDL_RENDERER_ACCELERATED = 0x00000001, /**< The renderer uses hardware
with the refresh rate */
SDL_RENDERER_ACCELERATED = 0x00000040 /**< The renderer uses hardware
acceleration */ acceleration */
SDL_RENDERER_PRESENTVSYNC = 0x00000002 /**< Present is synchronized
with the refresh rate */
} SDL_RendererFlags; } SDL_RendererFlags;
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment