Commit 2dc5a97f authored by Sam Lantinga's avatar Sam Lantinga

Cleanup for the last checkin

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402033
parent fdafca64
...@@ -176,7 +176,7 @@ typedef enum ...@@ -176,7 +176,7 @@ typedef enum
SDL_RENDERER_PRESENTFLIP3 = 0x00000008, /**< Present uses a flip, rotating between two back buffers and a front buffer */ SDL_RENDERER_PRESENTFLIP3 = 0x00000008, /**< Present uses a flip, rotating between two back buffers and a front buffer */
SDL_RENDERER_PRESENTDISCARD = 0x00000010, /**< Present leaves the contents of the backbuffer undefined */ SDL_RENDERER_PRESENTDISCARD = 0x00000010, /**< Present leaves the contents of the backbuffer undefined */
SDL_RENDERER_PRESENTVSYNC = 0x00000020, /**< Present is synchronized with the refresh rate */ SDL_RENDERER_PRESENTVSYNC = 0x00000020, /**< Present is synchronized with the refresh rate */
SDL_RENDERER_ACCELERATED = 0x0000040, /**< The renderer uses hardware acceleration */ SDL_RENDERER_ACCELERATED = 0x00000040, /**< The renderer uses hardware acceleration */
} SDL_RendererFlags; } SDL_RendererFlags;
/** /**
......
...@@ -587,13 +587,13 @@ SetupTextureUpdate(GL_RenderData * renderdata, SDL_Texture * texture, ...@@ -587,13 +587,13 @@ SetupTextureUpdate(GL_RenderData * renderdata, SDL_Texture * texture,
static int static int
GL_SetTextureColorMod(SDL_Renderer * renderer, SDL_Texture * texture) GL_SetTextureColorMod(SDL_Renderer * renderer, SDL_Texture * texture)
{ {
return -1; return 0;
} }
static int static int
GL_SetTextureAlphaMod(SDL_Renderer * renderer, SDL_Texture * texture) GL_SetTextureAlphaMod(SDL_Renderer * renderer, SDL_Texture * texture)
{ {
return -1; return 0;
} }
static int static int
......
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