Real-Time 3D Graphics with WebGL 2
上QQ阅读APP看书,第一时间看更新

Unbinding a VBO

As a rule of thumb, we should unbind our buffers after we're done using them. We can do so with:

gl.bindBuffer(gl.ARRAY_BUFFER, null);.