(no title)
ladon86 | 1 year ago
The basic technique for rendering gaussian splats is kryptonite for this architecture, essentially implementing every worse practice for rendering on a mobile GPU:
* Tons of overdraw (overlapping splats)
* Tons of alpha blending
* Millions of splats in the distance generate a lot of tiny triangles resolving to a single pixel
* Long thin splats in the foreground generate triangles that cover multiple tiles
These are all the ingredients you need to bring a mobile GPU to its knees! Any desktop GPU (including most laptops) will be far less sensitive to these issues, even if it's not very powerful. It's a fundamental issue of architecture rather than one of raw FLOPs.
OrangeMusic|1 year ago