graphicswidth.bmx 265 B

12345678910
  1. SuperStrict
  2. Graphics 640,480,0,60
  3. DrawText "Graphics Width: "+GraphicsWidth(), 10 , 10
  4. DrawText "Graphics Height: "+GraphicsHeight(), 10 , 30
  5. DrawText "Graphics Depth: "+GraphicsDepth(), 10 , 50
  6. DrawText "Graphics Hertz: "+GraphicsHertz(), 10 , 70
  7. Flip
  8. WaitKey()