Tagged Questions
-5
votes
2answers
202 views
Why are graphics engines writern in C/C++, when games are GPU bound? [closed]
What performance benefits a low level language can give to the engine, when the game is dependent on the GPU?
0
votes
1answer
516 views
Help understand GLSL directional light on iOS (left handed coord system)
I now have changed from GLKBaseEffect to a own shader implementation. I have a shader management, which compiles and applies a shader to the right time and does some shader setup like lights. Please ...
8
votes
5answers
1k views
Geometric Transformations on the CPU vs GPU
I've noticed that many 3d programs normally do vector/matrix calculations as well as geometric transformations on the CPU. Has anyone found an advantage in moving these calculations into vertex ...