Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Cleanup for the last checkin
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Aug 28, 2006
1 parent 14a914a commit b2bba02
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/SDL_video.h
Expand Up @@ -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_PRESENTDISCARD = 0x00000010, /**< Present leaves the contents of the backbuffer undefined */
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;

/**
Expand Down
4 changes: 2 additions & 2 deletions src/video/SDL_renderer_gl.c
Expand Up @@ -587,13 +587,13 @@ SetupTextureUpdate(GL_RenderData * renderdata, SDL_Texture * texture,
static int
GL_SetTextureColorMod(SDL_Renderer * renderer, SDL_Texture * texture)
{
return -1;
return 0;
}

static int
GL_SetTextureAlphaMod(SDL_Renderer * renderer, SDL_Texture * texture)
{
return -1;
return 0;
}

static int
Expand Down

0 comments on commit b2bba02

Please sign in to comment.