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?
|
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?
| |||||
feedback
|
|
It's executed once for each primitive (triangle, line or point) after the vertex shader has transformed the constituent vertices. | |||||||||||
feedback
|