I have a lot of objects but I want one of these objects (the one the mouse is hovering over) to "glow" (rapidly change colors).
So one way to do this is have each object have its own VBO. I will not have a color array. Then I will have like, a thousand VBO's each with about 20 quads... and if it's the selected object I will call glColor3f(blah,blah,blah) before it, else it will be the default color.
Another way is to have them all in one big VBO. I will have a color array. Then I will do something like, glBufferSubDataARB into the color array very frequently to make one object glow.
Which way is better and why? Also suggest another way if both ways are bad.