func_graphics_creategraphics.rst 592 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .. _func_graphics_creategraphics:
  2. ==============
  3. CreateGraphics
  4. ==============
  5. CreateGraphics -
  6. Description
  7. ===========
  8. .. code-block:: blitzmax
  9. CreateGraphics:TGraphics( width,height,depth,hertz,flags )
  10. Create a graphics object
  11. #CreateGraphics creates a graphics object. To use this object for rendering, you will
  12. first have to select it using #SetGraphics.
  13. The kind of graphics object returned depends upon the current graphics driver as set by
  14. #SetGraphicsDriver.
  15. Parameters
  16. ==========
  17. Return Values
  18. =============
  19. A graphics object
  20. Examples
  21. ========
  22. See Also
  23. ========