Views
love.graphics.getMode
Available since LÖVE 0.8.0 |
This function is not supported in earlier versions. |
Returns the current display mode.
Function
Synopsis
width, height, fullscreen, vsync, fsaa = love.graphics.getMode( )
Arguments
None.
Returns
number width
- Display width.
number height
- Display height.
boolean fullscreen
- Fullscreen (true) or windowed (false).
boolean vsync
- True if vertical sync is enabled or false if disabled.
number fsaa
- The number of FSAA samples.
See Also