@handtracking.io/yoha
Version:
Yoha is currently available for the web via JavaScript. More languages will be added in the future. If you want to port Yoha to another language and need help feel free reach out.
10 lines • 365 B
JavaScript
export function IsWebglOneOrTwoAvailable() {
return IsWebglOneAvailable() || IsWebglTwoAvailable();
}
export function IsWebglTwoAvailable() {
return !!document.createElement('canvas').getContext('webgl2');
}
export function IsWebglOneAvailable() {
return !!document.createElement('canvas').getContext('webgl');
}
//# sourceMappingURL=webgl_helper.js.map