{{newinoldin|[[0.8.0]]|080|[[0.10.0]]|100|type=function|text=It has been replaced by [[love.graphics.getSupported]]}}
Checks if certain graphics functions can be used.

Older and low-end systems do not always support all graphics extensions.

== Function ==
=== Synopsis ===
<source lang="lua">
isSupported = love.graphics.isSupported( support1, support2, support3, ... )
</source>
=== Arguments ===
{{param|GraphicsFeature|supportN|The graphics feature to check for.}}
=== Returns ===
{{param|boolean|isSupported|True if everything is supported, false otherwise.}}
== Examples ==
=== Error 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 ==
* [[parent::love.graphics]]
[[Category:Functions]]
{{#set:Description=Checks for the support of graphics related functions.}}
{{#set:Since=080}}
{{#set:Sub-Category=State}}
== Other Languages ==
{{i18n|love.graphics.isSupported}}