love.graphics.getMode

Available since LÖVE 0.8.0
This function is not supported in earlier versions.
Removed in LÖVE 0.9.0
Moved to the love.window module as love.window.getMode.

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


Other Languages