Earlier quoted context omitted.
The dynamic adjustment is traversing the voxel representation when you render the view. This kind of per-pixel shadow map requires rerendering the scene for each light source - but in more or less the exact same way that the player view is rendered. Then some work rectifying that information. So it would be a big performance hit, but not obviously any worse than normal rendering. Although did someone say it was only…
20 fps in software . They're still finishing hardware rendering.
Games company claims their graphics are 100,000x better
71–80 of 144 posts
Re: Games company claims their graphics are 100,000x better
#72I'll say the same thing now as I said last time these guys released a video: I'll believe it when I see them make a single blade of grass move, or when they place a single dynamic light source and cast a single dynamic shadow. Until then, this technology is awesome, but more or less useless.
What is somewhat disappointing is that they don't tell if they have managed to solve these issues or not, as they were clearly commented on one year ago. Another major issue is the RAM-usage, as point cloud data will require a lot of memory. Their claims of being 100,000 times better than current technology is also "frustrating", as it is repeatedly mentioned as if you've for some strange reason forgot it in the last…
Re: Games company claims their graphics are 100,000x better
#73Earlier quoted context omitted.
They can be, and that's likely how it will work. Triangle animated characters + voxel static world.
Then why is everyone here complaining about the lack of dynamic objects?
Re: Games company claims their graphics are 100,000x better
#74John Carmack's repsonse: "Re Euclideon, no chance of a game on current gen systems, but maybe several years from now. Production issues will be challenging." https://twitter.com/#!/ID_AA_Carmack/statuses/98127398683422...
Re: Games company claims their graphics are 100,000x better
#75The most unrealistic things in video games for me are faces. While increasing polygon counts and such will certainly help, I can't help but notice that faces will never cross the uncanny valley unless they can do something about the lighting. Check out: http://graphics.ucsd.edu/~henrik/images/subsurf.html So, unless they can do all this AND ray trace it at the same time, it really won't make my game experience 100,00…
Surely a lot of that is due, not to lighting/shadows/rendering, but to the incredible subtlety required of the animation? HL2 has some pretty amazingly convincing faces, and that's obviously not because it has the best rendering engine.
Re: Games company claims their graphics are 100,000x better
#76The second problem is that 10^4x improvement in level of detail does not mean 10^4x aesthetically pleasing (or in fact, more aesthetically pleasing at all). Ray tracing gets very expensive the moment you start adding multiple lights, specular materials, partially translucent materials, etc. It is very, very difficult to do that in real-time even with standard geometry, let alone with 10^4x more polygons. This is why their level doesn't look nearly as good as modern games despite higher polygon count (compare it to the unreal demo: http://www.youtube.com/watch?v=ttx959sUORY) They only use diffuse lighting and few lights. In terms of aesthetic appeal of a rendered image, lighting and textures are everything.
Furthermore, one of the biggest impacts on how aesthetically pleasing a rendered images looks is made by global illumination. That's also something that's extremely difficult to do in real time with raytracing, but is possible with gpu hardware with tricks. The trouble is, these tricks look much better than raw polygons.
Again, I love what they're doing. Real-time ray-tracing is without a doubt the future of graphics, but it would be nice if they were a little less sensational about the technology, and more open about the limitations and open issues.
Re: Games company claims their graphics are 100,000x better
#77I think what they're doing is great, but I see two problems with their presentation. First, computer rendering techniques are extremely well understood and well researched. We've picked the low hanging fruit, much of the high hanging fruit, and everything in between. There is no "groundbreaking new technology" to be invented. They're converting polygons into voxels (although each voxel is probably a sphere for cheape…
Re: Games company claims their graphics are 100,000x better
#78I am pretty sure that their tech depends on a few types of repeatable data, which they are able to cache effectively based on rotation -- in other words, they have come up with an efficient way of querying the front-facing voxels in a large set of data based on the resulting view matrix. Where this falls flat is if the data is not procedural, or it is not diverse - as you can see in the video, there is a bunch of the same data copied over and over. However you compress it, such detail is not free and I am guessing there is a lot of data that depends on a good deal of memory/storage to work properly.
I am not so worried about animation or dynamic lights or textures as everyone else is. If they can render it to a buffer and get the normals/depth/UV coordinates, the rest of the rendering can be done in screen-space, including SSAO, deferred lighting, and similar rasterization tricks. Animation can also be rendered on top of the scene, and intersected with the former depth buffer. The only thing I am worried about is the size of the data set and ability to create more diverse landscapes.
Re: Games company claims their graphics are 100,000x better
#79I think what they're doing is great, but I see two problems with their presentation. First, computer rendering techniques are extremely well understood and well researched. We've picked the low hanging fruit, much of the high hanging fruit, and everything in between. There is no "groundbreaking new technology" to be invented. They're converting polygons into voxels (although each voxel is probably a sphere for cheape…
This is somewhat the state-of-the-art in realtime ray-tracing (actually path-tracing): http://www.youtube.com/watch?v=qntMz2QPA_E using the Brigade renderer. It's using both the GPU and CPU.
Re: Games company claims their graphics are 100,000x better
#80I'll say the same thing now as I said last time these guys released a video: I'll believe it when I see them make a single blade of grass move, or when they place a single dynamic light source and cast a single dynamic shadow. Until then, this technology is awesome, but more or less useless.
Even if it's absolutely impossible to animate this technology I don't think it would be "useless". I don't see why it wouldn't be possible to have the static elements (buildings, tree trunks, ground, debris, etc etc) of a level rendered using this tech, and polygons used for everything else. It used to be this way in the bad old days (Doom etc) - Polygons for level structure and sprites for animation. This would at l…