{{oldin|[[0.9.0]]|090|type=function|text=Moved to the [[love.window]] module as [[love.window.getFullscreenModes]]}}

Gets a list of supported fullscreen modes.
== Function ==
=== Synopsis ===
<source lang="lua">
modes = love.graphics.getModes( )
</source>
=== Arguments ===
None.
=== Returns ===
{{param|table|modes|A table of width/height pairs. (Note that this may not be in order.)}}
== Examples ==
=== Format of the returned table ===
<source lang="lua">
modes = love.graphics.getModes()

-- modes = {
-- 	{ width = 320, height = 240 },
-- 	{ width = 640, height = 480 },
-- 	{ width = 800, height = 600 },
-- 	{ width = 1024, height = 768 },
-- 	...
-- }
</source>
=== Sort table to ensure it is in order ===
<source lang="lua">
modes = love.graphics.getModes()
table.sort(modes, function(a, b) return a.width*a.height < b.width*b.height end)   -- sort from smallest to largest
</source>
== See Also ==
* [[parent::love.graphics]]
* [[love.graphics.checkMode]]
* [[love.graphics.setMode]]
[[Category:Functions]]
{{#set:Description=Gets a list of supported fullscreen modes.}}
{{#set:Since=000}}
{{#set:Sub-Category=Window}}
== Other Languages ==
{{i18n|love.graphics.getModes}}