We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d06ed1 commit e2a603dCopy full SHA for e2a603d
src/native-bindings.js
@@ -73,8 +73,8 @@ bindings.nativeGl = (nativeGl => {
73
bindings.nativeGl2 = (nativeGl2 => {
74
function WebGL2RenderingContext(canvas) {
75
const gl = new nativeGl2();
76
- _decorateGlIntercepts(gl);
77
- WebGLRenderingContext.onconstruct(gl, canvas);
+ // _decorateGlIntercepts(gl); // this should not be needed; left as comment only
+ bindings.nativeGl.onconstruct(gl, canvas);
78
return gl;
79
}
80
for (const k in nativeGl2) {
0 commit comments