Skip to content

Instantly share code, notes, and snippets.

@joshfinnie
Created December 4, 2012 19:24
Show Gist options
  • Save joshfinnie/4207731 to your computer and use it in GitHub Desktop.
Save joshfinnie/4207731 to your computer and use it in GitHub Desktop.
Modernizr Webgl Test
function testWebGL() {
try {
return !!window.WebGLRenderingContext && !!document.createElement('canvas').getContext('experimental-webgl');
} catch(e) {
return false;
}
}
Modernizr.load([
{
test : testWebGL(),
nope : ''
}
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment