Difference between revisions of "love.graphics.isSupported"

(Added oldin)
m
 
Line 1: Line 1:
{{newin|[[0.8.0]]|080|type=function}}
+
{{newinoldin|[[0.8.0]]|080|[[0.10.0]]|100|type=function|text=It has been replaced by [[love.graphics.getSupported]]}}
{{oldin|[[0.10.0]]|100|type=function|text=It has been replaced by [[love.graphics.getSupported]]}}
 
 
Checks if certain graphics functions can be used.
 
Checks if certain graphics functions can be used.
  

Latest revision as of 16:38, 27 December 2015

Available since LÖVE 0.8.0 and removed in LÖVE 0.10.0
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

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

Error 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