From c52add1d46627eebfed5b683eb1ba721c45f50dc Mon Sep 17 00:00:00 2001 From: Warinyourself Date: Sun, 21 Jun 2026 14:39:50 +0300 Subject: [PATCH] Make GL.el protected to allow PostProcessGL subclass access --- src/utils/gl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/gl.ts b/src/utils/gl.ts index 0831628..fbd451e 100644 --- a/src/utils/gl.ts +++ b/src/utils/gl.ts @@ -20,7 +20,7 @@ interface GlOption { export default class GL { ctx!: WebGLRenderingContext - private el!: HTMLCanvasElement + protected el!: HTMLCanvasElement program!: WebGLProgram | null private vertexShader!: WebGLShader