Newer
Older
pixi.js / test / withGL.js
@Matt Karl Matt Karl on 22 Feb 2017 124 bytes 4.4.0
'use strict';

function withGL(fn)
{
    return PIXI.utils.isWebGLSupported() ? fn : undefined;
}

module.exports = withGL;