Is this the WOW effect of the hardware price-to-performance ratio? The only significant benefit I can see is that the M-series chips have RAM as GPU memory, which is slower than traditional GPUs, but at least you can run things with that memory.
As a video game programmer, I can speak to this. For video games, we generally need geometry. Flat planes, things you can collide against, things we can reason about. Gaussian splats work as a bunch of 2D images stuck on top of each other, that in combination look correct. This is great for rendering, but makes it very very difficult/impossible to figure out whether you are inside some geometry or not, because it doesn't have any. it doesn't give you any way to reason about it as solid geometry. So in the end, you have to create the geometry that is the solid surfaces that you will collide against and move around in, and gaussian splats would be independent of that. Once you have all the geometry, its much easier to just render that.
There are tools that will generate geometry from splats, but its generally not very good, and gives messy results. Fixing the messiness is often more work than just re-doing it from scratch. This is another incredibly difficult problem that hasn't been solved particularly well.
9 comments
[ 3.3 ms ] story [ 38.2 ms ] threadIt won’t be surprising if Apple overtakes Windows as a gaming platform in coming decades IMO if Intel can’t catch up.
There are tools that will generate geometry from splats, but its generally not very good, and gives messy results. Fixing the messiness is often more work than just re-doing it from scratch. This is another incredibly difficult problem that hasn't been solved particularly well.