Function
love.graphics.getModes( )
Gets a list of supported fullscreen modes.
Synopsis
modes = love.graphics.getModes( )
Returns
modes table A table of width/height pairs.
Examples
Format of the returned table
  1. modes = love.graphics.getModes()
  2.  
  3. -- modes = {
  4. --  { width = 800, height = 800 },
  5. --  { width = 1024, height = 767 },
  6. --  ...
  7. -- }
Copyright © 2006-2010 LÖVE Development Team.