user1767754
user1767754

Reputation: 25154

Is there an Ordering with glAttachShader() Opengl

Is there an order I have to consider when using glAttachShader with different Pipelinestages?

glAttachShader(program, vertex_shader);
glAttachShader(program, tessellation_shader);
...

Upvotes: 1

Views: 395

Answers (1)

Appleshell
Appleshell

Reputation: 7388

No, you don't have to consider a specific order.

Upvotes: 3

Related Questions