this post was submitted on 17 May 2025
841 points (98.6% liked)

196

17611 readers
638 users here now

Be sure to follow the rule before you head out.


Rule: You must post before you leave.



Other rules

Behavior rules:

Posting rules:

NSFW: NSFW content is permitted but it must be tagged and have content warnings. Anything that doesn't adhere to this will be removed. Content warnings should be added like: [penis], [explicit description of sex]. Non-sexualized breasts of any gender are not considered inappropriate and therefore do not need to be blurred/tagged.

If you have any questions, feel free to contact us on our matrix channel or email.

Other 196's:

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] AdrianTheFrog@lemmy.world 1 points 10 hours ago* (last edited 10 hours ago) (1 children)

In a video game, you can walk up close enough to a wall that only 5% of the texture fills your entire screen. That means the texture is very zoomed in and you can clearly see the lack of detail in even a 4k texture, even when on a 1080p monitor.

You're also not "pushing 4x the pixels through the game" the only possible performance downside is the vram usage (and probably slightly less efficient sampling)

[–] sp3ctr4l@lemmy.dbzer0.com 1 points 6 hours ago (1 children)

If that is happening, the game designer is either incompetent and doesn't know how to scale/asymetrically tile/uvmap/mipmap/use emergent detail maps/etc their textures and models properly, or coordinate level design with objects properly for such obects being viewed extremely up close or with extreme zoom... or they just don't care to, either out of laziness, time constraints, targeted hardware limiting performance constraints, fundamental engine capability constraints, or intentional art style direction.

If your game is commonly causing situations where a 1080p texture is being viewed so closely that it is just showing you a stretched out, low res mess... you most likely aren't scaling mipmaps adequately for your level design and object placement.

These video explain some of these concepts within UE:

https://www.youtube.com/watch?v=KhDatVm6C6U

https://www.youtube.com/watch?v=Pcm6SrfgnvA

And here's an overview of how to asymetrically (not a simple repeating grid) tile large scale textures, to achieve a better looking large in game object with clever, repeated use of a single, smaller base texture, or overlayed noise maps, secondary textures, bump/normal/shadow maps, etc, within Blender.

https://www.youtube.com/watch?v=o0Mc8fjSAA0

And absolutely yes, if all the textures in a complex scene being rendered are 4K instead of 1080p, yes, every texture has 4x as many pixels, uses 4x as much vram, 4x as much system ram, is 4x more expensive to push into the entire render pipeline, etc, which will significantly lessen performance on most systems in most common situations.

[–] AdrianTheFrog@lemmy.world 1 points 2 hours ago

I think the only actual performance downsides once everything is already loaded into vram should be from the sampled values being less often concurrent in memory (which shouldn't matter at all if mipmaps are being used)

What other step could decrease performance?