love.graphics.isSupported

love.graphics.isSupported

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


© 2006–2016 LÖVE Development Team
Licensed under the GNU Free Documentation License, Version 1.3.
https://love2d.org/wiki/love.graphics.isSupported

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部