Difference between revisions of "love.graphics.isSupported"

(Changed to GraphicsFeature.)
Line 10: Line 10:
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
{{param|string|supportN|One of the following strings.<br><br>"canvas" for [[Canvas]] support.<br>"pixeleffect" for PixelEffect support.<br>"npot" for Non-Power Of Two support}}
+
{{param|GraphicsFeature|supportN|The graphics feature to check for.}}
 
=== Returns ===
 
=== Returns ===
 
{{param|boolean|isSupported|True if everything is supported, false otherwise.}}
 
{{param|boolean|isSupported|True if everything is supported, false otherwise.}}

Revision as of 00:09, 9 April 2012

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.

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.

See Also


Other Languages