Lines Matching defs:bpp
452 int logo, int logocursor, int slowly, int bpp, float gamma, int noframe, int fsaa, int sync, int accel )
486 if ( bpp == 0 ) {
488 bpp = 8;
490 bpp = 16; /* More doesn't seem to work */
511 switch (bpp) {
546 if ( SDL_SetVideoMode( w, h, bpp, video_flags ) == NULL ) {
552 printf("Screen BPP: %d\n", SDL_GetVideoSurface()->format->BitsPerPixel);
567 printf( "SDL_GL_DEPTH_SIZE: requested %d, got %d\n", bpp, value );
788 int bpp = 0;
817 if ( strcmp(argv[i], "-bpp") == 0 ) {
818 bpp = atoi(argv[++i]);
837 "Usage: %s [-twice] [-logo] [-logocursor] [-slow] [-bpp n] [-gamma n] [-noframe] [-fsaa] [-accel] [-sync] [-fullscreen]\n",
843 RunGLTest(argc, argv, logo, logocursor, slowly, bpp, gamma, noframe, fsaa, sync, accel);