{{newin|[[0.9.0]]|090|type=function|text=Moved from [[love.graphics.getMode]]}}
Gets the display mode and properties of the window.

== Function ==
=== Synopsis ===
<source lang="lua">
width, height, flags = love.window.getMode( )
</source>
=== Arguments ===
None.
=== Returns ===
{{param|number|width|Window width.}}
{{param|number|height|Window height.}}
{{param|table|flags|Table with the window properties:}}
{{subparam|boolean|fullscreen|Fullscreen (true), or windowed (false).}}
{{subparam|FullscreenType|fullscreentype|The type of fullscreen mode used.}}
{{subparam|boolean|vsync|True if the graphics framerate is synchronized with the monitor's refresh rate, false otherwise.}}
{{subparam|number|msaa|The number of antialiasing samples used (0 if MSAA is disabled).}}
{{subparam|boolean|resizable|True if the window is resizable in windowed mode, false otherwise.}}
{{subparam|boolean|borderless|True if the window is borderless in windowed mode, false otherwise.}}
{{subparam|boolean|centered|True if the window is centered in windowed mode, false otherwise.}}
{{subparam|number|display|The index of the display the window is currently in, if multiple monitors are available.}}
{{subparam|number|minwidth|The minimum width of the window, if it's resizable.}}
{{subparam|number|minheight|The minimum height of the window, if it's resizable.}}
{{New feature|0.9.1|
{{subparam|boolean|highdpi|True if [[love.window.getPixelScale|high-dpi mode]] is allowed on Retina displays in OS X. Does nothing on non-Retina displays.}} }}
{{New feature|0.9.2|
{{subparam|number|refreshrate|The refresh rate of the screen's current display mode, in Hz. May be 0 if the value can't be determined.}}
{{subparam|number|x|The x-coordinate of the window's position in its current display.}}
{{subparam|number|y|The y-coordinate of the window's position in its current display.}} }}
{{Removed new feature|0.9.1|0.10.0|
{{subparam|boolean|srgb|Removed in [[0.10.0]] (use [[love.graphics.isGammaCorrect]] instead). True if sRGB gamma correction is applied when drawing to the screen.}} }}

== See Also ==
* [[parent::love.window]]
* [[love.window.setMode]]
[[Category:Functions]]
{{#set:Description=Gets the display mode and properties of the window.}}
== Other Languages ==
{{i18n|love.window.getMode}}