Skip to content

Instantly share code, notes, and snippets.

@Samsy
Created August 14, 2017 16:12
Show Gist options
  • Save Samsy/8da51b266b7424772545913d8cea03da to your computer and use it in GitHub Desktop.
Save Samsy/8da51b266b7424772545913d8cea03da to your computer and use it in GitHub Desktop.
webgltest
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