Skip to content

Instantly share code, notes, and snippets.

@alkrauss48
Created May 24, 2014 15:21
Show Gist options
  • Save alkrauss48/2d3cf7ba7d10732f7b01 to your computer and use it in GitHub Desktop.
Save alkrauss48/2d3cf7ba7d10732f7b01 to your computer and use it in GitHub Desktop.
Full Test for WebGL Support
function webgl_support() {
try{
var canvas = document.createElement( 'canvas' );
return !! window.WebGLRenderingContext && (
canvas.getContext( 'webgl' ) || canvas.getContext( 'experimental-webgl' ) );
}catch( e ) { return false; }
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment