how are frame rates determined in games, can they be altered? Are they something that can be fixed in a patch if a game has a low framerate or framerate issues? How hard Is it to fix?

147 views

how are frame rates determined in games, can they be altered? Are they something that can be fixed in a patch if a game has a low framerate or framerate issues? How hard Is it to fix?

In: 0

5 Answers

Anonymous 0 Comments

Games work by drawing a bunch of pictures. The number of pictures (i.e. frames) per second is called framerate.

Every time something in the game moves, the game needs to run a bunch of code to figure out how to draw the next picture. Weaker computers are slower at performing calculations, so it takes longer to run all the necessary code between each frame, making the framerate slower.

Sometimes the problem is in your hardware. You just don’t have a powerful enough computer. Other times, the code is badly written, so it takes an unnecessarily long amount of time between each frame. That can be fixed with a patch by optimizing the code.

You are viewing 1 out of 5 answers, click here to view all answers.