Reputation: 34016
So a vertex shader is executed for each vertex and a fragment shader for each fragment (right?).
How many times is a geometry shader executed?
Upvotes: 4
Views: 448
Reputation: 14534
It's executed once for each primitive (triangle, line or point) after the vertex shader has transformed the constituent vertices.
Upvotes: 4