Difference between revisions of "love.graphics.isSupported"

(I suck at formating. Can someone come up with a better solution?)
 
(Updating to recent changes in the code.)
Line 1: Line 1:
 
{{newin|[[0.8.0]]|080|type=function}}
 
{{newin|[[0.8.0]]|080|type=function}}
Checks if certain graphics function can be used.
+
Checks if certain graphics functions can be used.
  
 
Older and low-end systems do not always support all graphics extensions.
 
Older and low-end systems do not always support all graphics extensions.
Line 7: Line 7:
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
supported = love.graphics.isSupported( support1, support2, support3, ... )
+
isSupported = love.graphics.isSupported( support1, support2, support3, ... )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
{{param|string|supportN|One of the following strings.<br><br>"spritebatches" for [[SpriteBatch]] support.<br>"framebuffers" for [[Framebuffer]] support.<br>"pixeleffects" for PixelEffect support.}}
+
{{param|string|supportN|One of the following strings.<br><br>"canvas" for [[Canvas]] support.<br>"pixeleffect" for PixelEffect support.}}
 
=== Returns ===
 
=== Returns ===
{{param|boolean|supported|True if everything is supported, false otherwise.}}
+
{{param|boolean|isSupported|True if everything is supported, false otherwise.}}
 
== See Also ==
 
== See Also ==
 
* [[parent::love.graphics]]
 
* [[parent::love.graphics]]

Revision as of 12:29, 13 August 2011

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

string supportN
One of the following strings.

"canvas" for Canvas support.
"pixeleffect" for PixelEffect support.

Returns

boolean isSupported
True if everything is supported, false otherwise.

See Also


Other Languages