From 68bea3e6fc83591cf31b081f5d1735c3c300c71e Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Wed, 10 Jun 2026 21:41:20 +0100 Subject: [PATCH] Stop leaking again --- .../graphics-library/program/fragment-shader-only-program.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphics/graphics-library/program/fragment-shader-only-program.ts b/src/graphics/graphics-library/program/fragment-shader-only-program.ts index 18c53e0..a43ba9d 100644 --- a/src/graphics/graphics-library/program/fragment-shader-only-program.ts +++ b/src/graphics/graphics-library/program/fragment-shader-only-program.ts @@ -28,7 +28,7 @@ export class FragmentShaderOnlyProgram extends Program { if (this.gl.isWebGL2) { this.gl.bindVertexArray(this.vao!); } else { - this.vertexArrayExtension.createVertexArrayOES(); + this.vertexArrayExtension.bindVertexArrayOES(this.vao!); } }