masagrator
masagrator t1_j6cro3f wrote
Reply to ELi5 : If you can access a website, why cant you steal the source code and make a 1:1 copy of it? by 13lettersinhere
What you are getting is just a ready to eat dish. You are not getting whole recipe to make it.
masagrator t1_j5oy7r0 wrote
Reply to ELI5 how do game patches work? by redlunarwolff
This depends on each platform.
PC platforms are installing patches by editing/replacing existing files and adding new ones if necessary.
On game consoles patch as a whole is mounted next to base game when game is launched, it's not replacing physically installed files. Patch usually for assets doesn't include whole files, but only changed bits with informations where those changes in original files happened. So when game will want to load texture that was patched, system will read data from both base game for original data and patch for changed data.
masagrator t1_j445dk0 wrote
Reply to comment by RailwayFox in Ukrainian refugee 'went home to see doctor as Scottish wait too long' by themimeofthemollies
Meh, only few rockets here and there every week. Not that much.
masagrator t1_jac1rxm wrote
Reply to ELI5: how does rendering a video game resolution above your monitor resolution make the picture more crisp? by ItsSnowingOutside
This is actually true only in specific cases. If you will use resolution that won't create equal square blocks that can be summarized equally (how this works was explained by other people), you will actually get less crisp image than native resolution.
So if you have 1920x1080 monitor, but you will use resolution lower than 3840x2160, you will get less edges, but image may be less crisp than 1920x1080 because of "approximation". Since we lack informations to properly descale image, it uses algorithm to figure out best possible result. Which varies and with low resolution difference image is more noisy, which means it's less sharp in result. It is more visible on displays with lower resolution. 900p image on 720p display will be visibly less sharp than 1440p image on 1080p display.
It's most visible with text if you set higher resolution on whole game instead of using internal scaler that renders only 3D objects at higher res while 2D HUD stays at native resolution.