regarding the PlayStation 5, how can a game “take full advantage of a new console” if it is also developed to run on the previous one.

527 views

If the gameplay can be the same on the PlayStation 4 doesn’t that mean that there are advancements in the PlayStation 5 that are just not being used? Shouldn’t a PlayStation 5 game that uses all of the new features of the PS5 be impossible to run on a PlayStation 4?

In: Technology

3 Answers

Anonymous 0 Comments

Not necessarily. In programming, there are things called Libraries, which are basically common code. You can create libraries for different platforms (i.e., PS4 and PS5) that accomplish the same task, but on a PS5, take advantage of new features. Some of these libraries might be things that are already baked into the console that you’re just consuming as a developer.

For instance, a game might have a call for something like `loadIntoGraphicsMemory()`. On a PS4, that function will have the CPU pull a texture into normal memory and then from there into graphics memory. On a PS5, that function will have the GPU directly pull the texture from store and bypass the main memory. This way, the developer doesn’t even need to do anything and their game runs better on a PS5.

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