func_graphics_graphics.rst 614 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .. _func_graphics_graphics:
  2. ========
  3. Graphics
  4. ========
  5. Graphics -
  6. Description
  7. ===========
  8. .. code-block:: blitzmax
  9. Graphics:TGraphics( width,height,depth=0,hertz=60,flags=0 )
  10. Begin graphics
  11. #Graphics is a convenience function that simplifies the process of creating a graphics
  12. object.
  13. Once #Graphics has executed, you can begin rendering immediately without any need for
  14. #SetGraphics.
  15. #Graphics also enables #{polled input} mode, providing a simple way to monitor the keyboard
  16. and mouse.
  17. Parameters
  18. ==========
  19. Return Values
  20. =============
  21. A graphics object
  22. Examples
  23. ========
  24. See Also
  25. ========