Difference between revisions of "GraphicsLimit"
m |
m |
||
Line 5: | Line 5: | ||
;texturesize: The maximum width or height of [[Image]]s and [[Canvas]]es. | ;texturesize: The maximum width or height of [[Image]]s and [[Canvas]]es. | ||
;multicanvas: The maximum number of simultaneously active canvases (via [[love.graphics.setCanvas]].) | ;multicanvas: The maximum number of simultaneously active canvases (via [[love.graphics.setCanvas]].) | ||
− | {{ | + | |
+ | {{New feature|0.10.0| | ||
;canvasmsaa: The maximum number of antialiasing samples for a [[love.graphics.newCanvas|Canvas]]. | ;canvasmsaa: The maximum number of antialiasing samples for a [[love.graphics.newCanvas|Canvas]]. | ||
− | {{ | + | }} |
+ | |||
+ | {{Removed feature|0.10.0| | ||
;canvasfsaa: The maximum number of antialiasing samples for a [[love.graphics.newCanvas|Canvas]]. | ;canvasfsaa: The maximum number of antialiasing samples for a [[love.graphics.newCanvas|Canvas]]. | ||
− | + | }} | |
== Notes == | == 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. | 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. |
Revision as of 01:27, 22 March 2016
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.getSystemLimits.
Contents
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.)
- canvasmsaa
- The maximum number of antialiasing samples for a Canvas.
- 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 generally be either 1, 4, or 8.
See Also
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info