OpenGL - Can I draw non-indexed when index-buffer is set for VAO?

294 Views Asked by At

I set up a VAO, binding vertex-buffers to it for vertex attributes, but also set index-buffer (With glVertexArrayElementBuffer). Does that restrict it so it only works with glDrawElements type of commands, or will it work with glDrawArrays too? (Using OpenGL4.5)

1

There are 1 best solutions below

0
On BEST ANSWER

Does that restrict it so it only works with glDrawElements type of commands?

No.

You can still use non-indexed draw calls like glDrawArrays. The question is whether your vertex topology suits that. glDrawArrays is essentially equal to an indexed draw call with indices [0, 1, 2, 3, 4, 5, ...].