I am waiting for the GPU's to use the rotating kinetic power of the fans to feed back into the GPU to give them ERS boost like in formula 1, when scenes become to graphically demanding. If you steal my idea that is intellectual theft and I will be sad!
I'm running a 4070s
CP2077 with RT is around 50fps with dips. Without RT I sit at 90fps with max settings and 144p
Ray tracing is just a way for nvidia to proprietize a technology then force the industry to use it all to keep Jensen in leather jackets. Don't buy his cards; he has too many leather jackets!
amd cards can handle raytracing too though.... soooooo.
As I'm sure you already know the proprietary part comes from the implementation and built in hardware support for said implementation, which AMD is not compatible with (not in any usable way at least)
AMD also has hardware support for raytracing and both are using the same API for raytracing. Nvidia just has a head start and deeper pockets.
This isn't Cuda or Gameworks where the features depend on Nvidia hardware, it's more like Tessellation where they can both do it but Nvidia cards did it better so they pushed developers into adding it into games.
as someone who has worked in visual fx for 20 years now, including on over 15 films and 8 games, raytracing is most definitely not simply a marketing tool.
Ray tracing is cool, problem is, it is still in beta basically. Once hardware catches up and you can still get good FPS then it won't be an annoyance
Meme creator is clearly blind.
I never turn it on, the visual difference is too unimportant to warrant such a huge cost in hardware resources (and temperature). It looks different if you have side-by-side screenshots, or if you turn it off and on in-game, but if the difference is several orders of magnitude too slight to be worth it. Higher frames-per-second is more important than realistically-simulated light beams. You can't really have both in large AAA games.
Soooo, there's a missing part here. The point (and drive) behind raytracing isn't making games beautiful, it's making them cheaper and less man-hour intensive to make/maintain.
The engine guys spend manyears every year working on that non-raytraced engine so it can do 150. They've done every cheat, every side step, and spent every minute possible making it look like they haven't done anything at all.
The idea is that they stop making/updating/supporting non-raytracing engines and let the GPU's pick up the slack. Then using AI to artificially 'upgrade' the frame rate with interpolation.
To see how far rasterization has been stretched, and how that holds back development - Path of Exile 2 has a tech talk about their bare minimum settings. Artists weren't allowed to rely on anything that could be turned off. They begged the programmers for specific gimmicks, and turned that cheap nonsense into a million blades of grass, raymarched cracks in translucent ice, and soft shadows with no Peter Panning.
Or, picking one specific trick: ambient occlusion was half of why Crysis humbled $5,000 PCs. There's a slide deck for how a superior version of the same effect was achieved in Toy Story 3 on the Wii.
Real-time raytracing was unobtanium for decades because we kept moving the goalposts. The entire 3D games industry is built on cheating around simple parallel techniques being too expensive. By the time hardware catches up to where doing something the simple way is feasible, complex software has faked a wild variety of other effects. Meanwhile: games are designed to rely on what's available. All of the tells for proper path-traced lighting have either been faked or avoided. Games don't even do mirrors, anymore.
There's a reason RTX shows off games from the late 1900s.
It's not just a time limitation either tho, it also opens up a lot of room for artistic direction and game design
I don't think you could possibly make something like Control's shiny black blocks world look decent without raytraced reflections.
Also anything with significantly large dynamic geometry usually either needs like half of the level file size to be duplicated for every possible state, or some form of raytracing, to work at all. (There's also things like voxel cone tracing that do their own optimized tracing but they also don't really work in 100% of situations and come with their own visual downsides)
Don't forget that temporal smear. I like to apply vaseline directly onto my monitor instead.
Don't forget the 10 shadow copies of my car/weapon following me around. It's like someone really liked having a trailing mouse cursor and thought everything should have it
Skyrim has "ray traced" shadows in certain places and works great. I was in a cave once and hiding behind a cliff. An enemy was wandering around the next room and I was able to use the shadow cast on him by a torch to observe his movements without having his actual body in my field of view.
All this modern RT nonsense does is make things look slightly better than screen space reflections and tank performance.
I would expect that to be a normal rasterized shadow map unless you can find any sources explicitly saying otherwise. Because even 1 ray per pixel in complex triangulated geometry wasn't really practical in real time until probably at least 2018
I'm not sure how it worked, all I know is that it was real time and would react to player models, enemies or other things that would move in unpredictable ways, but only for specific light sources.
Yeah, that's just rasterized shadow mapping. It's very common and a lot of old games use it, as well as any modern game. Basically used in any non-raytraced game with dynamic shadows (I think there's only one other way to do it, just directly projecting the geometry, only done by a few very old games that can only cast shadows onto singular flat surfaces).
The idea is that you render the depth of the scene from the perspective of the light source. Then, for each pixel on the screen, to check if it's in shadow, you find it's position on the depth texture. If it's further away than something else from the perspective of the light, it's in shadow, else it isn't. This is filtered to make it smoother. The downside is that it can't support shadows of variable width without some extra hacks that don't work in all cases (aka literally every shadow), to get sharp shadows you need to render that depth map at a very high resolution, rendering a whole depth map is expensive, it renders unseen pixels, doesn't scale that well to low resolutions (like if you wanted 100 very distant shadow catching lights) etc.
Raytraced shadows are actually very elegant since they operate on every screen pixel (allowing quality to naturally increase as you get closer to any area of interest in the shadow) and naturally support varying shadow widths at the cost of noise and maybe some more rays. Although they still scale expensively with many light sources, some modified stochastic methods still look very good and allow far more shadow casting lights than would ever have been possible with pure raster.
You don't notice the lack of shadow casting lights much in games because the artists had to put in a lot of effort and modifications to make sure you wouldn't.
That's actually one specific torch!
It is unknown why it has this function, or why Bethesda left it in
Just Bethesda things
I think raytracing is fine for games that want a lot of realism. But I'm playing games with monsters and fantasy. My suspension of disbelief isn't going to break because reflections aren't quite right.
But I'm pretty much in the camp of, I want my games to look and feel like games. I like visual cues like highlighting items I can interact with or pick up. So lighting is always non-realistic.
Look at Tiny Glade, it's a great example of what raytracing can bring to a stylized game. (They did use their own raytracing pipeline different from the usual - in their own words, re-stir was overkill for what their game needed). Or like 95% of animated films. Including Arcane but excluding Stray.
Baked lighting looks almost as good as ray tracing because, for games that use baked lighting, devs intentionally avoid scenes where it would look bad.
Half the stuff in this trailer (the dynamically lit animated hands, the beautiful lighting on the moving enemies) would be impossible without ray tracing. Or at the least it would look way way worse:
Practically impossible for this developer? Maybe. Technically impossible? No.
We do have realtime GI solutions which don't require raytracing (voxel cone tracing, sdfgi, screenspace, etc). None of which require any 'special' hardware.
Raytracing is just simpler and doesn't need as much manual work to handle cases where traditional rasterisation might fail (eg; light leaking). But there's not many things it can do which we can't already achieve with rasterisation tricks.
Raytracing is mostly useful for developers who don't have the time/budget/skillset to get the same visual quality with traditional rasterisation.
However, in an industry which seems to prioritise getting things released as cheaply and quickly as possible, we're starting to see developers rely heavily on raytracing, and not allocating many resources into making their non-rt pipeline look nice.
Some are even starting to release games which require raytracing to work at all, because they completely cut the non-rt pipeline out of their budget.
So I'd argue that you're incorrect in theory, but very correct in practise (and getting even more correct with time).
Greentext
This is a place to share greentexts and witness the confounding life of Anon. If you're new to the Greentext community, think of it as a sort of zoo with Anon as the main attraction.
Be warned:
- Anon is often crazy.
- Anon is often depressed.
- Anon frequently shares thoughts that are immature, offensive, or incomprehensible.
If you find yourself getting angry (or god forbid, agreeing) with something Anon has said, you might be doing it wrong.