Switch color space to 24-bit

This commit is contained in:
RadialApps 2017-08-08 16:27:11 +05:30 committed by Varun Patil
parent 47b499d85b
commit 559b026b19
1 changed files with 8 additions and 0 deletions

View File

@ -273,6 +273,14 @@ int main(int argc, char *argv[])
} }
SDL_Window *win; SDL_Window *win;
/* Set the color space to 24 bit */
SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 8);
SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 8);
SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8);
SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, 0);
SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 0);
Uint32 winFlags = SDL_WINDOW_OPENGL | SDL_WINDOW_INPUT_FOCUS; Uint32 winFlags = SDL_WINDOW_OPENGL | SDL_WINDOW_INPUT_FOCUS;
if (conf.winResizable) if (conf.winResizable)