Difference between revisions of "love.graphics.isSupported"
m |
Mcjohnalds45 (talk | contribs) (Added an example) |
||
Line 13: | Line 13: | ||
=== Returns === | === Returns === | ||
{{param|boolean|isSupported|True if everything is supported, false otherwise.}} | {{param|boolean|isSupported|True if everything is supported, false otherwise.}} | ||
+ | == Examples == | ||
+ | === Crash smoothly if the graphics card does not support canvases === | ||
+ | <source lang="lua"> | ||
+ | assert( | ||
+ | love.graphics.isSupported('canvas'), 'Your graphics card does not support canvases, sorry!' | ||
+ | ) | ||
+ | </source> | ||
== See Also == | == See Also == | ||
* [[parent::love.graphics]] | * [[parent::love.graphics]] |
Revision as of 07:39, 14 June 2013
Available since LÖVE 0.8.0 |
This function is not supported in earlier versions. |
Checks if certain graphics functions can be used.
Older and low-end systems do not always support all graphics extensions.
Contents
Function
Synopsis
isSupported = love.graphics.isSupported( support1, support2, support3, ... )
Arguments
GraphicsFeature supportN
- The graphics feature to check for.
Returns
boolean isSupported
- True if everything is supported, false otherwise.
Examples
Crash smoothly if the graphics card does not support canvases
assert(
love.graphics.isSupported('canvas'), 'Your graphics card does not support canvases, sorry!'
)
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