Reputation: 25154
Is there an order I have to consider when using glAttachShader with different Pipelinestages?
glAttachShader
glAttachShader(program, vertex_shader); glAttachShader(program, tessellation_shader); ...
Upvotes: 1
Views: 395
Reputation: 7388
No, you don't have to consider a specific order.
Upvotes: 3