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!); } }