Difference between revisions of "GraphicsLimit"

(Created page)
 
m
Line 11: Line 11:
 
It's safe to assume the maximum texture size will never be less than 1024 and will almost always be 2048 or greater.There is an [http://feedback.wildfiregames.com/report/opengl/feature/GL_MAX_TEXTURE_SIZE online database] which has collected info about the max texture size for various systems.
 
It's safe to assume the maximum texture size will never be less than 1024 and will almost always be 2048 or greater.There is an [http://feedback.wildfiregames.com/report/opengl/feature/GL_MAX_TEXTURE_SIZE online database] which has collected info about the max texture size for various systems.
  
The value for [[love.graphics.getSystemLimit|love.graphics.getSystemLimit("multicanvas")]] will be at least 4, as long as multi-canvas rendering is [[GraphicsFeature|supported]].
+
The value for the '''multicanvas''' system limit will be at least 4, as long as multi-canvas rendering is [[GraphicsFeature|supported]].
 
== See Also ==
 
== See Also ==
 
* [[parent::love.graphics]]
 
* [[parent::love.graphics]]

Revision as of 16:01, 18 July 2015

Available since LÖVE 0.9.1
This enum is not supported in earlier versions.

Types of system-dependent graphics limits checked for using love.graphics.getSystemLimit.

Constants

pointsize
The maximum size of points.
texturesize
The maximum width or height of Images and Canvases.
multicanvas
The maximum number of simultaneously active canvases (via love.graphics.setCanvas.)
canvasfsaa
The maximum number of antialiasing samples for a Canvas.

Notes

Attempting to create an Image with a width **or** height greater than the maximum supported will create a checkerboard-patterned image instead. Doing the same for a Canvas will result in an error.

It's safe to assume the maximum texture size will never be less than 1024 and will almost always be 2048 or greater.There is an online database which has collected info about the max texture size for various systems.

The value for the multicanvas system limit will be at least 4, as long as multi-canvas rendering is supported.

See Also

Other Languages