Newer
Older
pixi.js / src / core / renderers / webgl / utils / validateContext.js
@Matt Karl Matt Karl on 14 Jun 2016 356 bytes Cleanup jshint errors


function validateContext(gl)
{
	var attributes = gl.getContextAttributes();

	// this is going to be fairly simple for now.. but at least we have rom to grow!
	if(!attributes.stencil)
	{
		console.warn('Provided WebGL context does not have a stencil buffer, masks may not render correctly'); // jshint ignore:line
	}
}

module.exports = validateContext;