love.graphics.isSupported

Available since LÖVE 0.8.0
This function is not supported in earlier versions.

Checks if certain graphics function can be used.

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

Function

Synopsis

supported = love.graphics.isSupported( support1, support2, support3, ... )

Arguments

string supportN
One of the following strings.

"spritebatches" for SpriteBatch support.
"framebuffers" for Framebuffer support.
"pixeleffects" for PixelEffect support.

Returns

boolean supported
True if everything is supported, false otherwise.

See Also


Other Languages