I'm having a really hard time finding beginner-friendly resources about using Vertex Buffer Objects.
The closest thing I came across was this tutorial, but it deals with a 3D rotating cube and also doesn't do any subsequent color modification after the VBO has been created.
Maybe someone knows an even better tutorial which reduces the complexity to the simplest base line possible to understand how VBOs work.
My boss wants me to implement VBOs for a simulation where we have a grid of rectangles which is colorized about 30 times per second. Right now my logic simply creates one rectangle after another and issues a glDrawArrays call, which is very slow.