I'm building a rendering system that makes heavy use with instanced rendering. As I understand, instanced rendering is generally more efficient as it allows you to reduce total draw calls and the amount of raw vertex data you have to store on the GPU.
I would expect that, at some point, instanced rendering develops overhead compared to simply sending in raw vertex data. My current drawing system will result in many instances (thousands) of very small pieces of vertex data (6 vertices each).
Instanced rendering fits my drawing system very nicely and allows me to avoid generating any "redundant" vertex data, but I'm concerned that drawing this number of tiny instances places extra strain on the GPU. Is this the case?