Skip to content

Instantly share code, notes, and snippets.

@lindemann09
Created May 6, 2014 07:20
Show Gist options
  • Save lindemann09/f1e24708a35689c1cba1 to your computer and use it in GitHub Desktop.
Save lindemann09/f1e24708a35689c1cba1 to your computer and use it in GitHub Desktop.
pygame full screen test
import pygame
pygame.display.init()
screen_size = (pygame.display.Info().current_w,
pygame.display.Info().current_h)
pygame.display.set_mode(screen_size,
pygame.DOUBLEBUF | pygame.OPENGL | pygame.FULLSCREEN)
pygame.time.wait(2000)
pygame.quit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment