123456789101112131415161718192021222324252627282930313233343536373839404142 |
- .. _func_graphics_graphics:
- ========
- Graphics
- ========
- Graphics -
- Description
- ===========
- .. code-block:: blitzmax
- Graphics:TGraphics( width,height,depth=0,hertz=60,flags=0 )
- Begin graphics
- #Graphics is a convenience function that simplifies the process of creating a graphics
- object.
- Once #Graphics has executed, you can begin rendering immediately without any need for
- #SetGraphics.
- #Graphics also enables #{polled input} mode, providing a simple way to monitor the keyboard
- and mouse.
- Parameters
- ==========
- Return Values
- =============
- A graphics object
- Examples
- ========
- See Also
- ========
|