I am creating a terrain engine and currently I am uploading the whole terrain VB (Vertex Buffer) and IB (Index Buffer) to the GPU at once since the terrain is not huge. It's 256x256 at the moment.
Now, let's say I want to create a procedural terrain which uses perlin noise to generate the heightmap.
Of couse I could generate "patches" and upload all of the VB and IB of the patches at once to the GPU, but as the player moves far away and new patches have to be generated, then I would have to generate new patches and upload them to the GPU. The confusion or problems that I have in my mind are:
Is it slow to upload VB and IB to the GPU? Would the player notice a flicker when data is uploaded to the GPU?
Would the performance be better if I upload the VB and IB of the patches gradually to the GPU instead of all of them at once? Basically I'm asking if the size of the VB and IB matters much.
Any information on this concept would be greatly appreciated.
Thanks!