With pygame, one can call the set_mode() with display flags: https://www.pygame.org/docs/ref/display.html#pygame.display.set_mode
Currently the EzPyGame's Application class has no way to read and write these flags, so a property should be added for each possible flag:
pygame.FULLSCREEN create a fullscreen display
pygame.DOUBLEBUF recommended for HWSURFACE or OPENGL
pygame.HWSURFACE hardware accelerated, only in FULLSCREEN
pygame.OPENGL create an OpenGL-renderable display
pygame.RESIZABLE display window should be sizeable
pygame.NOFRAME display window will have no border or controls
With
pygame, one can call theset_mode()with display flags: https://www.pygame.org/docs/ref/display.html#pygame.display.set_modeCurrently the EzPyGame's
Applicationclass has no way to read and write these flags, so a property should be added for each possible flag: