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);.