Hello!
I´ve been thinking about how to work with massive models, and I´ve got an idea.
(Kinda stolen but whatever…)
Currently the drawing call renders ALL of the objects in a single frame.
For large models there is a lot to draw, so there is more time between the calls, leaving us with bad FPS.
So the more complex the model is, more and more time (processing power) is needed to render a single frame.
So my solution would be calling the render for each object (or a batch of objects), not all.
The problem with this solution is that the objects would popup on the screen, but that is not a problem for my project.
So instead of drawing everything on each frame, I would draw everything I could till my time limit, then when this limit is reached the drawing frame method is called.
This will make the FPS stable, since the draw call time would be “fixed”.
We could work on the model normally, with the drawback of objects popping up every time the camera changes.
What do you guys think about this?
Is it viable to do for glTF format?
Am I crazy?
Please share your opinion about this subject.