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 5ec9d1e commit dd271b5Copy full SHA for dd271b5
src/Graphics.js
@@ -193,6 +193,9 @@ function ProxiedWebGLRenderingContext(canvas) {
193
}
194
ProxiedWebGLRenderingContext.prototype = Object.create(WebGLRenderingContext.prototype);
195
196
+for (const k in WebGLRenderingContext) {
197
+ ProxiedWebGLRenderingContext[k] = WebGLRenderingContext[k];
198
+}
199
for (const k in WebGLRenderingContext.prototype) {
200
const o = Object.getOwnPropertyDescriptor(WebGLRenderingContext.prototype, k);
201
if (o.get) {
0 commit comments