this post was submitted on 24 Sep 2023
968 points (97.5% liked)
Dank Memes
6143 readers
94 users here now
This is the place to be on the interweb when Reddit irreversibly becomes a meme itself and implodes
If you are existing mods from r/dankmemes, you should be mod here too, kindly DM me on either platform
The many rules inherited from
- Be nice, don't be not nice
- No Bigotry or Bullying
- Don't be a dick!
- Censor any and all personal information from posts and comments
- No spam, outside links, or videos.
- No Metabaiting
- No brigading
- Keep it dank!
- Mark NSFW and spoilers appropriately
- NO REEEEEEE-POSTS!
- No shitposting
- Format your meme correctly. No posts where the title is the meme caption!
- No agenda posting!
- Don't be a critic
- Karma threshold? What's that?
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
It's not going to be less performance in the game. Once uploaded to GPU texture is ready to be used. Just the loading part would be slower.
That’s only true if the GPU can fit all of the textures for the whole game in its VRAM, and doesn’t need to store anything else.
What do you think the chances of that are?
It's not a chance based thing. But sure, sometimes keeping texture in memory is fine.
It is loading them dynamically in the background constantly. If those textures are compressed, it’s doing work to load the compressed version into memory, CPU is reading it out of memory, decompressing it and putting it back in memory, then moving it to the GPU.
It will take 1.5x (assuming 50% reduction in the compressed copy, probably would be worse) the RAM plus the CPU overhead depending on compression algorithm.
That is happening while you’re playing.
Unless at load it is decompressing and storing the decompressed textures on your disk, in which case you need 1.5x (or more) of the original storage to play the game and compressing them in the first place is worse if the thing you’re optimizing for is game size on disk (which is what this thread is complaining about).