Spyke
Artyom
lemm.ee

Step 1. Turn on ray tracing

Step 2. Check some forum or protondb and discover that the ray tracing/DX12 is garbage and gets like 10 frames

Step 3. Switch back to DX11, disable ray tracing

Step 4. Play the game

132

Best use of ray tracing I've seen is to make old games look good, like Quake II or Portal or Minecraft. Newer games are "I see the reflection in the puddle just under the car when I put them side by side" and I just can't bring myself to care.

7
ElectroLisareply
lemmy.blahaj.zone

If I know a game I'm about to play runs on Unreal Engine, I'm passing a -dx11 flag immediately. It removes a lot of useless Unreal features like Nanite

5

Then you get to enjoy they worst LODs known to man because they were only made as a fallback

24

Nanite doesn't affect any of the post processing stuff nor the smeary look. I don't like that games rely on it but modern ue5 games author their assets for nanite. All it affects is model quality and lods.

Lumen and other real time GI stuff is what forces them to use temporal anti aliasing and other blurring effects, that's where the slop is.

14
_____reply
lemm.ee

what's wrong with nanite?

9

Nanite + Lumen run like garbage on anything other than super high end hardware.

It is also very difficult to tweak and optimize.

Nanite isn't as unperformant as Lumen, but its basically just a time saver for game devs, and its very easy for a less skilled game dev to think they are using it correctly... and actually not be.

But, Nanite + Lumen have also become basically the default for AAA games down to shitty asset flips... because they're easier to use from a dev standpoint.

2
Artyomreply

Control and Doom Eternal are the only exceptions to this rule I've played, but they are very much the exception.

1
yonder
sh.itjust.works

Out of all of these, motion blur is the worst, but second to that is Temporal Anti Aliasing. No, I don't need my game to look blurry with every trailing edge leaving a smear.

110
sp3ctr4lreply
lemmy.zip

TAA is kind of the foundation that almost all real time EDIT: raytracing frame upscaling and frame generation are built on, and built off of.

This is why it is increasingly difficult to find a newer, high fidelity game that even allows you to actually turn it off.

If you could, all the subsequent magic bullshit stops working, all the hardware in your GPU designed to do that stuff is now basically useless.

EDIT: I goofed, but the conversation thus far seems to have proceeded assuming I meant what I actually meant.

Realtime raytracing is not per se foundationally reliant on TAA, DLSS and FSR frame upscaling and later framgen tech however basically are, they evolved out of TAA.

However, without the framegen frame rate gains enabled by modern frame upscaling... realtime raytracing would be too 'expensive' to implement on all but fairly high end cards / your average console, without serious frame rate drops.

Befor Realtime raytracing, the paradigm was that all scenes would have static light maps and light environments, baked into the map, with a fairly small number of dynamic light sources and shadows.

With Realtime raytracing... basically everything is now dynamic lights.

That tanks your frame rate, so Nvidia then barrelled ahead with frame upscaling and later frame generation to compensate for the framerate loss that they introduced with realtime raytracing, and because they're an effective monopoly, AMD followed along, as did basically all major game developers and many major game engines (UE5 to name a really big one).

8
Vlynreply
lemmy.zip

What? All Ray Tracing games already offer DLSS or FSR, which override TAA and handle motion much better. Yes, they are based on similar principles, but they aren't the mess TAA is.

6
sp3ctr4lreply
lemmy.zip

Almost all implementations of DLSS and FSR literally are evolutions of TAA.

TAA 2.0, 3.0, 4.0, whatever.

If you are running DLSS or FSR, see if your game will let you turn TAA off.

They often won't, because they often require TAA to be enabled before DLSS or FSR can then hook into them and extrapolate from there.

Think of TAA as a base game and DLSS/FSR as a dlc. You very often cannot just play the DLC without the original game, and if you actually dig into game engines, you'll often find you can't run FSR/DLSS without running TAA.

There are a few exceptions to this, but they are rare.

9
Vlynreply
lemmy.zip

TAA just means temporal anti aliasing. Temporal as in relying on data from the previous frames.

The implementation of DLSS and FSR are wholly separate from the old TAA. Yes, they work on the same principals, but do their own thing.

TAA as a setting gets disabled because the newer methodes fully overwrite it. Some games hide the old setting, others gray it out, it depends.

1
sp3ctr4lreply
lemmy.zip

The implementation of DLSS and FSR are wholly separate from the old TAA. Yes, they work on the same principals, but do their own thing.

TAA as a setting gets disabled because the newer methodes fully overwrite it.

This is very often false.

DLSS/FSR need per pixel motion vectors, or at least comparisons, between frames, to work.

TAA very often is the thing that they get those motion vectors from... ie, they are dependent on it, not seperate from it.

Indeed, in many games, significant other portions/features of a game's graphical engine bug out massively when TAA is manually disabled, which means these features/portions are also dependent on TAA.

Sorry to link to the bad site, but:

https://www.reddit.com/r/FuckTAA/comments/motdjd/list_of_known_workarounds_for_games_with_forced/

And here's all the games that force TAA which no one has yet figured out how to disable:

https://www.reddit.com/r/FuckTAA/comments/rgxy44/list_of_games_with_forced_taa/

Please go through all of these and notice how many modern games:

  1. Do not allow the user to turn off TAA easily, forcing them to basically mod the game by manually editing config files or more extensive workarounds.

  2. Don't even tell the user that TAA is being used, requiring them to dig through the game to discover that it is.

  3. When TAA is manually disabled, DLSS/FSR breaks, or other massive graphical issues crop up.

TAA is the foundational layer that many modern games are built on... because DLSS/FSR/XeSS and/or other significant parts of the game's graphical engine hook into the pixel motion per frame comparisons that are done by TAA.

The newer methods very often do not overwrite TAA, they are instead dependent on it.

Its like trying to run or compile code that is dependent on a library you don't actually have present... it will either fail entirely, or kind of work, but in a broken way.

Sure, there are some instances where DLSS/FSR is implemented in games, in a way that is actually its whole own, self contained pipeline... but very often, this is not the case, TAA is a dependency for DLSS/FSR or other graphical features of the game engine.

TAA is massively different that older MSAA or FXAA or SMAA kinds of AA... because those don't compare frames to previous frames, they just apply an effect to a single frame.

TAA provides ways of comparing differences in sequences of frames, and many, many games use those methods to feed into many other graphical features that are built on top of, and require those methods.

To use your own words: TAA is indeed a mess, and you apoarently have no idea how foundational this mess is to basically all the new progression of heavily marketed, 'revolutionary' graphical rendering techniques of the past 5 ish years.

1
Vlynreply

I get all that, but it's still not what I'm trying to explain. If TAA is forced in a game that supports DLSS/FSR it's still not used in the image itself, but rather just the motion vector data gets piped into the new algorithm.

Otherwise even with DLSS/FSR active you'd have all the smearing and bad quality of the original TAA implementation, which you simply don't.

So it's just pedantic if a toggle in a game appears on/off or at all, if the engine just uses the motion vector data and then uses DLSS/FSR/XeSS or what have you to actually do the anti-aliasing.

1
Valmondreply
lemmy.world

But why did you buy a 1800โ‚ฌ video card then?

2
MentalEdgereply
sopuli.xyz

So you can use a more demanding form on anti-aliasing, that doesn't suck ass?

18

Like rip maps instead of mip maps? Or is it some AI bs nowadays?

0

Honestly motion blur done well works really well. Cyberpunk for example does it really well on the low setting.

Most games just dont do it well tho ๐Ÿ’€

-2
lemmy.world

Has the person who invented the depth of field effect for a video game ever even PLAYED a game before?

75
taiyangreply
lemmy.world

I mean, it works in... hmmm... RPGs, maybe?

When I was a kid there was an effect in FF8 where the background blurred out in Balamb Garden and it made the place feel bigger. A 2D painted background blur, haha.

Then someone was like, let's do that in the twenty-first century and ruined everything. When you've got draw distance, why blur?

38
DaddleDewreply
lemmy.world

Yes, it makes sense in a game where the designer already knows where the important action is and controls the camera to focus on it. It however does not work in a game where the action could be anywhere and camera doesn't necessarily focus on it.

35

Yup, or if they're covering up hardware deficiency, like Nintendo sometimes does. And even then, they generally prefer to just make everything a little fuzzy, like BotW.

8

It works for the WiiU games where Nintendo used it for tilt shifts. That's pretty much it

2

Well, not exactly, but they were described to him once by an elderly man with severe cataracts and that was deemed more than sufficient by corporate.

9
shneancyreply
lemmy.world

it works great for games that have little to no combat, or combat that's mostly melee and up to like 3v1. or if it's a very slight DOF that just gently blurs things far away

idk what deranged individual plays FPS games with heavy DOF though

6

the problem with dilf is that you need to put the subject of your life in the middle

4
11111one11111reply
lemmy.world

What is the depth of field option? When it's on what happens vs when it's off?

Side question, why the fuck does everything in IT reuse fucking names? Depth of field means how far from character it'll render the environment, right? So if the above option only has an on or off option then it is affecting something other than the actual depth of field, right? So why the fuck would the name of it be depth of fucking field??? I see this shit all the time as I learn more and more about software related shit.

-32
tehmicsreply
lemmy.world

No.

Depth of field is when backgroud/foreground objects get blurred depending on where you're looking, to simulate eyes focusing on something.

You're thinking of draw distance, which is where objects far away aren't rendered. Or possibly level of detail (LoD) where distant objects will be changed to a lower detailed model as they get further away.

34

In this context it just refers to a post processing effect that blurs certain objects based on their distance to the camera. Honestly it is one of the less bad ones imo, as it can be well done and is sometimes necessary to pull off a certain look.

10
DaddleDewreply
lemmy.world

When it's on, whatever the playable character looks at will be in focus and everything else that is at different distances will be blurry, as it would be the case in real life if your eyes were the playable character's eyes. The problem is that the player's eyes are NOT the playable character's eyes. Players have the ability to look around elsewhere on the screen and the vast majority of them use it all the time in order to play the game. But with that stupid feature on everything is blurry and the only way to get them in focus is to move the playable character's view around along with it to get the game to focus on it. It just constantly feels like something is wrong with your eyes and you can't see shit.

8
Zozanoreply
aussie.zone

It's like motion blur. Your eyes already do that, you don't need it to be simulated...

0

For depth of field, our eyes don't automatically do that for a rendered image. It's a 2d image when we look at it and all pixels are the same distance and all are in focus at the same time. It's the effect you get when you look at something in the distance and put your finger near your eye; it's blurry (unless you focus on it, in which case the distant objects become blurry).

Even VR doesn't get it automatically.

It can feel unnatural because we normally control it unconsciously (or consciously if we want to and know how to control those eye muscles at will).

6
FooBarringtonreply
lemmy.world

No, your eyes can't do it on a screen. The effect is physically caused by the different distances of two objects, but the screen is always the same distance from you.

5
Zozanoreply
aussie.zone

Yes, but you still get the blurry effect outside of the spot on the screen you're focused on.

1
FooBarringtonreply
lemmy.world

Not in the same way. Our eyes have lower resolution away from the center, but that's not what's causing DoF effects. You're still missing the actual DoF.

If the effect was only caused by your eye, the depth wouldn't matter, but it clearly does.

1

Yeah I get it, I'm just saying it's unnecessary. If I need to see what's going on in the background, then my eyes should be able to focus on it.

There are very few scenarios where DoF would be appropriate (like playing a character who lost their glasses).

Like chromatic aberration, which feels appropriate for Cyberpunk, since the main character gets eye implants and fits the cyberpunk theme.

2
SitDreply
lemy.lol

to be fair you need it for 24fps movies. however, on 144Hz monitors it's entirely pointless indeed

4

My Dad showed me the Avatar game on PS4. The default settings have EXTREME motion blur, just by turning the camera; the world becomes a mess of indecipherable colors, it's sickening.

Turning it off changed the game completely.

3
Zozanoreply
aussie.zone

Depth of field is basically how your characters eyes are unfocused on everything they aren't directly looking at.

If there are two boxes, 20 meters apart, one of them will be blurry, while aiming at the other.

6

Your example is great at illustrating how DoF is often widely exaggerated in implementation, giving the player the experience of having very severe astigmatism, far beyond the real world DoF experienced by the average... eyeball haver.

4

Put your finger in front of your face. Focus on it. Background blurry? That's depth of field. Now look at the background and notice your finger get blurry.

2
lime!
feddit.nu

motion blur is essential for a proper feeling of speed.

most games don't need a proper feeling of speed.

73
Wafflereply
infosec.pub

Motion blur is guarenteed to give me motion sickness every time. Sometimes I forget to turn it off on a new game... About 30 minutes in I'll break into cold sweats and feel like I'm going to puke. I fucking hate that it's on by default in so many games.

30
sh.itjust.works

It really should be a prompt at first start. Like, ask a few questions like:

  • do you experience motion sickness?
  • do you have epilepsy?

The answers to those would automatically disable certain settings and features, or drop you into the settings.

It would be extra nice for a platform like PlayStation or Steam to remember those preferences and the game could read them (and display a message so you know it's doing it).

7
sp3ctr4lreply
lemmy.zip

... What?

I mean... the alternative is to get hardware (including a monitor) capable of just running the game at an fps/hz above roughly 120 (ymmv), such that your actual eyes and brain do real motion blur.

Motion blur is a crutch to be able to simulate that from back when hardware was much less powerful and max resolutions and frame rates were much lower.

At highet resolutions, most motion blur algorithms are quite inefficient and eat your overall fps... so it would make more sense to just remove it, have higher fps, and experience actual motion blur from your eyes+brain and higher fps.

12
lime!reply

my basis for the statement is beam.ng. at 100hz, the feeling of speed is markedly different depending on whether motion blur is on. 120 may make a difference.

5
AdrianTheFrogreply
lemmy.world

You still see doubled images instead of a smooth blur in your peripheral vision I think when you're focused on the car for example in a racing game.

0
AdrianTheFrogreply
lemmy.world

I mean just from persistence of vision you'll see multiple copies of a moving object if your eyes aren't moving. I have realized tho that in the main racing game I use motion blur in (beamng) I'm not actually reaching above 80fps very often.

here, I copied someone's shader to make a quick comparison:

with blur: https://www.shadertoy.com/view/wcjSzV

without blur: https://www.shadertoy.com/view/wf2XRV

Even at 144hz, one looks smooth while the other has sharp edges along the path.

Keep in mind that this technically only works if your eye doesn't follow any of the circles, as that would require a different motion blur computation. That's obviously not something that can be accounted for on a flatscreen, maybe in VR at some point though if we ever get to that level of sophistication. VR motion blur without taking eye movement into account is obviously terrible and makes everyone sick.

Someone else made a comparison for that, where you're supposed to follow the red dot with your eye. (keep in mind that this demo uses motion blur lengths longer than a frame, which you would not have if aiming for a human eye-like realistic look)

https://www.shadertoy.com/view/7tdyW8

3
ttrpg.network

Okay now I got it from your explanation, thanks!

By the way, the first two Shadertoys aren't working for me, I just get โ€œ:-( We either didn't find the page you were looking for, or there was an internal error.โ€. The third one works, though...

1

Oh I guess I set it to private instead of unlisted on accident. It should be fixed now.

1
pyrereply

yeah the only time I liked it was in need for speed when they added nitro boost. the rest of the options have their uses imo I don't hate them.

8
lemmy.zip

Now... in fairness...

Chromatic abberation and lense flares, whether you do or don't appreciate how they look (imo they arguably make sense in say CP77 as you have robot eyes)...

... they at least usually don't nuke your performance.

Motion blur, DoF and ray tracing almost always do.

Hairworks? Seems to be a complete roll of the dice between the specific game and your hardware.

50

I love it when the hair bugs out and covers the whole distance from 0 0 0 to 23944 39393 39

8
sp3ctr4lreply
lemmy.zip

You either haven't been playing PC games very long, or aren't that old, or have only ever played on fairly high end hardware.

Anisotropic filtering?

Yes, that... hasn't been challenging for an affordable PC an average person has to run at 8x or 16x for ... about a decade. That doesn't cause too much framerate drop off at all now, and wasn't too much until you... go all the way back to the mid 90s to maybe early 2000s, when 'GPUs' were fairly uncommon.

But that just isn't true for motion blur and DoF, especially going back further than 10 years.

Even right now, running CP77 on my steam deck, AF level has basically no impact on my framerate, whereas motion blur and DoF do have a noticable impact.

Go back even further, and a whole lot of motion blur/DoF algorithms were very poorly implemented by a lot of games. Nowadays we pretty much get the versions of those that were not ruinously inefficient.

Try running something like Arma 2 with a mid or low range PC with motion blur on vs off. You could get maybe 5 to 10 more fps having it off... and thats a big deal when you're maxing out at 30 to 40ish fps.

(Of course now we also get ghosting and smearing from framegen algos that ironically somewhat resemble some forms of motion blur.)

6

I am 40 and have been gaming on PC my entire life.

Try running something like Arma 2 with a mid or low range PC with motion blur on vs off. You could get maybe 5 to 10 more fps having it off... and thats a big deal when you're maxing out at 30 to 40ish fps.

Arma is a horrible example, since it is so poorly optimized, you actually get a higher frame rate maxing everything out compared to running everything on low. lol

2

If you're 40 and have been PC gaming your whole life, then I'm going with you've had fairly high end hardware, and are just misremembering.

Arma 2 is unoptimized in general... but largely thats because it basically uses a massive analog to a pagefile on your HDD because of how it handles its huge environments in engine. Its too much to jam through 32 bit OSs and RAM.

When SSDs came out, that turned out to be the main thing that'll boost your FPS in older Arma games, because they have much, much faster read/write speeds.

... But, their motion blur is still unoptimized and very unperformant.

As for setting everything to high and getting higher FPS... thats largely a myth.

There are a few postprocessing settings that work that way, and thats because in those instances, the 'ultra' settings actually are different algorithms/methods, that are both less expensive and visually superior.

It is still the case that if you set texture, model quality to low, grass/tree/whatever draw distances very short, you'll get more frames than with those things maxxed out.

2
lemm.ee

Taps temple Auto disable ray tracing if your gpu is too old to support it ( อกยฐ อœส– อกยฐ)

45
SmoothOperatorreply
lemmy.world

Why is that? If it has no significant impact on FPS, and you enjoy the high fidelity light simulation, then why turn it off?

8
SmoothOperatorreply
lemmy.world

Always? I'm currently playing Control on a 4070 Super, and I honestly can't tell the difference between ray tracing on and off on FPS.

7

The difference in control for a game made for two generations ago isn't massive but from what I saw between 25-33% on 4070 depending on resolution and other settings ofc

1
gamerreply

I'm on a 4090 an ray tracing increases the temperature in my room by a degree or three

-2
lemmynsfw.com

I don't understand who decided that introducing the downfalls of film and camera made sense for mimicking the accuracy and realism of the human eye

41
B312reply
lemmy.world

I donโ€™t think itโ€™s to make it fee realistic, itโ€™s more so to feel like itโ€™s a film that is being shot.

13
mkwt
lemmy.world

If only I could just turn off the chromatic aberration in my eyeglasses.

34

I'm on the -4.25 setting but I may be due for a new prescription as newer reality is getting blurry again.

2
Jovereply

You want to ask your optician for spectacles with glass lenses and they have to be made by Carl Zeiss AG, Jena, Germany.

1
lemm.ee

Iโ€™d add Denuvo to that list. Easily a 10-20% impact.

32
lemm.ee

Depth of field and chromatic aberration are pretty cool if done right.

Depth of field is a really important framing tool for photography and film. The same applies to games in that sense. If you have cinematics/cutscenes in your games, they prob utilize depth of field in some sense. Action and dialogue scenes usually emphasize the characters, in which a narrow depth of field can be used to put focus towards just the characters. Meanwhile things like discovering a new region puts emphasis on the landscape, meaning they can use a large depth of field (no background blur essentially)

Chromatic aberration is cool if done right. It makes a little bit of an out of place feel to things, which makes sense in certain games and not so much in others. Signalis and dredge are a few games which chromatic aberration adds to the artstyle imo. Though obviously if it hurts your eyes then it still plays just as fine without it on.

29
ysjetreply

I feel like depth of field and motion blur have their place, yeah. I worked on a horror game one time, and we used a dynamic depth of field- anything you were looking at was in focus, but things nearer/farther than that were slightly blurred out, and when you moved where you were looking, it would take a moment (less than half a second) to 'refocus' if it was a different distance from the previous thing. Combined with light motion blur, it created a very subtle effect that ratcheted up anxiety when poking around. When combined with objects in the game being capable of casting non-euclidean shadows for things you aren't looking at, it created a very pervasive unsettling feeling.

9

Chromatic aberration is also one of the few effects that actually happens with our eyes instead of being an effect designed to replicate a camera sensor.

7

Except I hate not being able to see my entire field of view clearly, why did we fight so hard for graphics only to blur that shit out past 50 feet?

4
Korhaka
sopuli.xyz

These settings can be good, but are often overdone. See bloom in the late 2000s/early 2010s.

26
ixlthyxlreply
discuss.tchncs.de

Also the ubiquitous "realistic" brown filter a la Far Cry 2 and GTA IV. Which was often combined with excessive bloom to absolutely destroy the player's eyes.

6

Yeah, chromatic aberration when done properly is great for emulating certain cameras and art styles. Bloom is designed to make things look even brighter and it's great if you don't go nuts with it. Lens flares are mid but can also be used for some camera stuff. Motion blur is generally not great but that's mainly because almost every implementation of it for games is bad.

5
gamerreply
lemm.ee

I always hated bloom, probably because it was overused. As a light touch it can work, but that is rarely how devs used it.

2

It's usually better in modern games. In the 2005-2015 era it was often extremely overdone, actually often reducing the perceived dynamic range instead of increasing it IMO.

2
kautau
lemmy.world

And film grain. Get that fake static out of here

26
ShortFusereply
lemmy.world

Most "film grain" is just additive noise akin to digital camera noise. I've modded a bunch of games for HDR (RenoDX creator) and I strip it from almost every game because it's unbearable. I have a custom film grain that mimic real film and at low levels it's imperceptible and acts as a dithering tool to improve gradients (remove banding). For some games that emulate a film look sometimes the (proper) film grain lends to the the look.

15

Agreed. It fits very well in very specific places, but when not there, itโ€™s just noise

5
lemm.ee

I don't mind a bit of lens flare, and I like depth of field in dialog interactions. But motion blur and chromatic aberration can fuck right off.

21

That's fair. I usually turn it off for FPS games. But if it's mild, I leave it on for third person games where I am playing as a camera.

3

I mean, lens flare does happen in the eye, just much less dramatically because there's only the one lens and everything is round. But "glare" like how the rest of your sight gets washed out because the sun is in your field of view is a manifestation of lens flare. The eyelashes can also produce some weird light artifacts that resemble camera lens flares but it's a different phenomenon.

1
feddit.org

Shadows: Off
Polygons: Low
Idle Animation: Off
Draw distance: Low
Billboards instead of models for scenery items: On

18
Psythikreply
lemm.ee

Does your PC even have a dedicated GPU? At this point you might as well give up on PC gaming and buy a console.

2
Psythik
lemm.ee

Hating on hair quality is a new one for me. I can understand turning off Ray Tracing if you can have a low-end GPU, but hair quality? It's been at least a decade since I've last heard people complaining that their GPU couldn't handle Hairworks. Does any game even still use it?

14
lemm.ee

PS3-> everything is sepia filtered and bloomed until nearly unplayable.

I will say that a well executed motion blur is just a chef's kiss type deal, but it's hard to get right and easy to fuck up

13
samus12345reply
lemm.ee

I think of that comic every time I see a gritty brown game. I don't see bloom as much any more, though.

3
lemm.ee

I think maybe that's part of why The Last Of Us grabbed everyone so hard; it was a gritty, green game. STALKER 2 is brown AF, though. Thank God they skipped the whole bloom fad.

2

I think bloom is one of those things that when it's used right it brings the atmosphere together without sticking out as a thing that's going on, like how our eyes adjust to light changes. When it's out of control and blacks out the scene by going WAAAAY too bright it sucks because you're looking at bloom, not at the game.

1

The number of times I've broken this one out...

After having lived through it, if I never play a gritty brown bloom game again, it'll be too soon.

3

Personally I use motion blur in every racing game I can but nothing else. It helps with the sense of speed and smoothness.

7

Early HDR games were rough. I look back at Zelda Twilight Princess screenshots, and while I really like that game, I almost squint looking at it because it's so bloomed out.

3

I feel like bloom depends on how intense it is, and if it makes sense to reasonably play the game.

Like, if it's the sun, yeah, bloom is OK.

If it's anything else? Pass.

4
lemmy.ml

The preference against DOF is fine. However, Iโ€™m looking at my f/0.95 and f/1.4 lenses and wondering why itโ€™s kind of prized in photography for some genres and hated in games?

9
ne0phytereply
feddit.org

It is unnatural. The focus follows where you are looking at. Having that fixed based on the mouse/center of the screen instead of what my eyes are doing feels so wrong to me.

I bet with good eye tracking it would feel different.

14

That makes sense, if you canโ€™t dynamically control what is in focus then itโ€™s taking a lot of control away from the player.

I can also see why a dev would want to use it for a fixed angle cutscene to create subject separation and pull attention in the scene though.

7

Different mediums. Different perception. Games are a different kind of immersion.

9

I always turn that shit off. Especially bad when it's a first-person game, as if your eyes were a camera.

9
zalgotextreply
sh.itjust.works

I like lense flare for a bit if I'm just enjoying the scenery or whatever. If I'm actually playing the game though, turn that shit off so I can actually see

3
sh.itjust.works

The main problem with these is giving people control of these properties without them knowing how the cameras work in real life.

6
Olmaireply

Sometimes it does look better, but I would argue it's on the developer to pick the right moments to use them, just like a photographer would. Handing it to the players is the wrong way to go about it, their control on it isnt nearly as good, even without considering their knowledge about it.

-2
Reziarfgreply
lemmy.world

Wait, I've been turning it off to prevent motion sickness. ๐Ÿค”

4
gamer
lemm.ee

I like DoF as it actually has a purpose in framing a subject. The rest are just lazy attempts at making the game "look better" by just slopping on more and more effects.

Current ray tracing sucks because its all fake AI bullshit.

5
frezikreply
midwest.social

It's also connected to a performance feature. They can load lower resolution textures for faraway objects. You can do this without the blurring effect of DoF, but it's less jarring if you can blur it.

3
gamerreply

The cost of DoF rendering far outweighs the memory savings of using reduced texture sizes, especially on older hardware where memory would be at a premium

3

The only game with Raytracing I've seen actually look better with RT on js Cyberpunk 2077. It's the only game I've seen that has full raytraced reflections on surfaces. Everything else just does shadows, and there's basically no visual difference with it on or off; it just makes the game run slower when on.

But those reflections in CP are amazing as fuck. Seeing things reflect in real time off a rained on road is sick.

3
SacralPlexusreply
lemmy.world

I agree with this. That makes it even more jarring to me that mirrors inside of safehouses donโ€™t work until you specifically interact with them. It seems so out of place in a game that has all of these cool raytraced reflections except for a mirror you directly look into.

2

I think Halo Infinite has a good example of a limited ray traced effect (the shadows) and an example of a terrible DoF effect (it does not look realistic at all or visually appealing)

1
Trollceptionreply
sh.itjust.works

Ray tracing is not related to AI. Why do you think it's fake AI bullshit? It's tracing rays in the same fashion that blender or Maya would. I think you may be confusing this with DLSS?

1
gamerreply
lemm.ee

"real time raytracing" as is advertised by hardware vendors and implemented in games today is primarily faked by AI de-noising. Even the most powerful cards can't fire anywhere near enough rays to fully raytrace a scene in realtime, so instead they just fire a very low number of rays, and use denoising to clean up the noisy result. That's why, if you look closely, you'll notice that reflections can look weird, and blurry/smeary (especially on weaker cards). It's because the majority of those pixels are predicted by machine learning, not actually sampled from the real scene data.

Blender/Maya's and other film raytracers have always used some form of denoising (before machine learning denoising, there were other algorithms used), but in films they're applied after casting thousands of rays per pixel. In a game today, scenes are rendering around 1 ray per pixel, and with DLSS it's probably even less since the internal render resolution is 2-4x smaller than the final image.

As a technologist, I'll readily admit these are cool applications of machine learning, but as a #gamer4lyfe, I hate how they look in actual games. Until gpus can hit thousands (or maybe just hundreds) of rays per pixel in real time, I'll continue to call it "fake AI bullshit" rather than "real time raytracing"

also, here's an informative video for anyone curious: https://youtu.be/6O2B9BZiZjQ

1

To each their own. I love ray tracing and think it looks far better than without it. I'm not concerned with how we got here but simply the end result of what is displayed on my screen and it's pleasing to my eyes.

1
lemmy.world

Bad effects are bad.

I used to hate film grain and then did the research for implementing myself, digging up old research papers on how It works at a scientific level. I ended up implementing a custom film grain in Starfield Luma and RenoDX. I actually like it and it has a level of "je ne sais quoi" that clicks in my brain that feels like film.

The gist is that everyone just does additive random noise which raises black floor and dirties the image. Film grain is perceptual which acts like cracks in the "dots" that compose an image. It's not something to be "scanned" or overlayed (which gives a dirty screen effect).

Related, motion blur is how we see things in real life. Our eyes have a certain level of blur/shutter speed and games can have a soap opera effect. I've only seen per-object motion blur look decent, but fullscreen is just weird, IMO.

4
dustyDatareply
lemmy.world

On Motion blur, our eye's motion blur, and camera's shutter speed motion blur are not the same. Eyes don't have a shutter speed. Whatever smearing we see is the result of relaxed processing on the brain side. Under adrenaline with heavy focus, our motion blur disappears as our brain goes full power trying to keep us alive. If you are sleep deprived and physically tired, then everything is blurred, even with little motion from head or eyes.

Over 99% of eye movement (e.g. saccadic eye movement) is ignored by the brain and won't produce a blurred impression. It's more common to notice vehicular fast movement, like when sitting in a car, as having some blur. But it can be easily overcome by focused attention and compensatory eye tracking or ocular stabilization. In the end, most of these graphical effects emulate camera behavior rather than natural experience, and thus are perceived as more artificial than the same games without the effects. When our brain sees motion blur it thinks movie theater, not natural everyday vision.

10

Yeah, if you see motion blur in real life, that usually means something bad, yet game devs are not using it for those purposes.

4
Auxreply
feddit.uk

Eyes do have a "shutter speed", but the effect is usually filtered out by the brain and you need very specific circumstances to notice motion blur induced by this.

0
dustyDatareply
lemmy.world

No, they don't. As there is no shutter in a continuous parallel neural stream. But, if you have any research paper that says so, go ahead and share.

2
Auxreply
feddit.uk

It has nothing to do with a neural stream, it's basic physics.

-1
dustyDatareply
lemmy.world

Explain, don't just antagonize. I bet you don't understand the basic physics either. I'm open to learn new things. What is the eye's shutter speed? sustain your claim with sources.

1
Auxreply
feddit.uk

I put "shutter speed" in quotes for a reason. To gather the required amount of light, the sensor must be exposed to it for a specific amount of time. When it's dark, the time increases. It doesn't matter if it's a camera or your eye.

0

That's sensitivity, not shutter speed. Eye's do not require time for exposure, but a quanta or intensity of light. This sensitivity is variable, but not in a time dilated way. Notice that you don't see blurrier in darker conditions, unlike a camera. You do see in duller colors, as a result of higher engagement of rods instead of cones. The first are more sensitive but less dense in the fovea, and not sensitive to color. While a camera remains as colorful but more prone to motion blur. This is because the brain does not take individual frames of time to process a single still and particular image. The brain analyses the signals from the eye continuously, dynamically and in parallel from each individual sensor, cone or rod.

In other words, eye's still don't have, even a figurative, shutter speed. Because eyes don't work exactly like a camera.

0

Add DLSS to the list. I've never had an experience where DLSS didn't make my game run better. It always makes the textures worse and the game run worse than just setting it to native resolution and a specific texture quality.

0
HereIAmreply
lemmy.world

Edit: I reread your message, and I missed the double negative in your sentence. Did you mean games never run better with DLSS?

That is odd. DLSS should definitely net you a handful of frames. Games often run better with ray tracing on and DLSS on quality vs native without ray tracing, sometimes doubling it. Some newer titles I find are only playable (at the very least 60 fps) because of DLSS (which is a whole problem in and of itself). I absolutely prefer running without any sort of temporal AA because of smudges and ghosting.

6

Rereading my comment, I think I left out the double negative, so you were right to be confused.

If I had to try and diagnose the issue, I think it comes down to the fact that I have an early 2060, which means not just an old card, but an old card with less VRAM. Consistently, I find that DLSS drops textures down to the lowest possible setting or constantly cycles between texture resolutions every few seconds when I can get a consistent 60 fps on medium settings in most games at native 1080p. It may net me a few extra fps, but the hit to quality simply isn't worth it if I can't make out what's what with the texture popping.

Another possible culprit would be shader caching since games are more and more demanding that you use an SSD to stream directly from the hardrive, but I'm not knowledgeable enough to get that deep into it.

2

Wym? I love DLSS. If I can't get a solid framerate at native resolution, DLSS really brings a lot to the table with a minor loss of quality imo.

3
shawn1122reply

Depends on how the game is optimized. For example I get minimal performance enhancement in GTA 5 enhnaced but in Witcher 3 its a solid 10 to 20 fps improvement on my hardware.

1

The title should be "anon can't afford rtx5090".

-12
Anon fixes their games | Spyke