Difference between revisions of "love.graphics.setMode"

m
m
Line 12: Line 12:
 
{{param|number|fsaa (0)|The number of FSAA-buffers.}}
 
{{param|number|fsaa (0)|The number of FSAA-buffers.}}
 
=== Returns ===
 
=== Returns ===
{{param|boolean|True|if successful, false otherwise.}}
+
{{param|boolean|success|True if successful, false otherwise.}}
 
== See Also ==
 
== See Also ==
 
* [[parent::love.graphics]]
 
* [[parent::love.graphics]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Changes the display mode.}}
 
{{#set:Description=Changes the display mode.}}

Revision as of 12:57, 28 March 2010

Changes the display mode.

Function

Synopsis

True = love.graphics.setMode( width, height, fullscreen, vsync, fsaa )

Arguments

number width
Display width.
number height
Display height.
boolean fullscreen (false)
Fullscreen (true), or windowed (false).
boolean vsync (true)
True if LOVE should wait for vsync, false otherwise.
number fsaa (0)
The number of FSAA-buffers.

Returns

boolean success
True if successful, false otherwise.

See Also