1.0.2 • Published 8 years ago

is-webgl-enabled v1.0.2

Weekly downloads
10
License
ISC
Repository
github
Last release
8 years ago

is-webgl-enabled

Detect if WebGL is enabled in the current environment.

npm travis standard

Install

npm install is-webgl-enabled

Usage

var isWebGLEnabled = require('is-webgl-enabled')

if (isWebGLEnabled()) {
  // WebGL is enabled! :)
} else {
  // WebGL is not enabled! :(
}

Why

I saw a few different implementations on npm, but they were either poorly documented, exported a value instead of a function, or returned an inconsitent type (such as true or null). So I made one for myself that just works™.

Also this became extra useful when my GPU got blacklisted by chromium.

Contributing

Contributions welcome! Please read the contributing guidelines first.

License

ISC