Difference between revisions of "love.graphics.getSupported"

(Created page)
 
m
Line 1: Line 1:
 
{{newin|[[0.10.0]]|100|type=function|text=It has replaced [[love.graphics.isSupported]]}}
 
{{newin|[[0.10.0]]|100|type=function|text=It has replaced [[love.graphics.isSupported]]}}
 
Gets the optional graphics features and whether they're supported on the system.
 
Gets the optional graphics features and whether they're supported on the system.
 +
 +
Some older or low-end systems don't always support all graphics features.
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===

Revision as of 02:54, 21 December 2015

Available since LÖVE 0.10.0
It has replaced love.graphics.isSupported.

Gets the optional graphics features and whether they're supported on the system.

Some older or low-end systems don't always support all graphics features.

Function

Synopsis

features = love.graphics.getSupported( )

Arguments

None.

Returns

table features
A table containing GraphicsFeature keys, and boolean values indicating whether each feature is supported.

See Also


Other Languages