Skip to content

Commit

Permalink
Rename to _createVao() -> _createVAO()
Browse files Browse the repository at this point in the history
  • Loading branch information
sunag committed Sep 29, 2023
1 parent 022475f commit 1663b3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/jsm/renderers/webgl/WebGLBackend.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ class WebGLBackend extends Backend {

if ( vaoGPU === undefined ) {

vaoGPU = this._createVao( renderObject );
vaoGPU = this._createVAO( renderObject );

this.get( renderObject ).vaoGPU = vaoGPU;

Expand Down Expand Up @@ -586,7 +586,7 @@ class WebGLBackend extends Backend {

}

_createVao( renderObject ) {
_createVAO( renderObject ) {

const { gl } = this;

Expand Down

0 comments on commit 1663b3f

Please sign in to comment.