What aspects of a game use GPU?

ledzepp

Honorable
Aug 2, 2012
7
0
10,510
what aspects of a game( like anti aliasing,ssao,textures,resolution etc) use GPU and which of those use CPU?
couldn't frame the question better,sorry :D
 
Solution
AA, texture loading, resolution, character movement(such as the actions of a model, not the direction AI takes). pretty much anything that you see, such as game models and anything the relates to scale of the picture and smoothness of the edging is handled by the GPU. Most times the AI control is done by the CPU side to balance the load. im not too technical with exactly which is handled by what but it also is different from program to program, its all dependant on the way the programmers made the game.

sscultima

Honorable
Jun 5, 2012
460
1
10,810
AA, texture loading, resolution, character movement(such as the actions of a model, not the direction AI takes). pretty much anything that you see, such as game models and anything the relates to scale of the picture and smoothness of the edging is handled by the GPU. Most times the AI control is done by the CPU side to balance the load. im not too technical with exactly which is handled by what but it also is different from program to program, its all dependant on the way the programmers made the game.
 
Solution