Vertex Painting Shader cost on VR

The cost of vertex colour is very cheap. Unlike textures where you have to do a lookup, you only have to send the data to the GPU memory. Accessing the memory happens even if you dont use it so it is practically free.

If you want to blend vertex colours you have to do it manually I think and then the cost might be slightly higher depending on your implementation.

HTH