SilverTiger / lwjgl3-tutorial

Tutorial for the Lightweight Java Game Library (LWJGL) 3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

typo (propably?)

Martin-Eckleben opened this issue · comments

In your tutorial you state:
int vao = glGenVertexArrays();
glBindVertexArrays(vao);

But I cant find glBindVertexArrays in any GL** class.
Only glBindVertexArray
Did you mean that or do I fail to understand some basics?

Yeah, you are right, it should be glBindVertexArray(vao) from the GL30 class as it can be seen here.
Thanks for pointing it out!

Fixed that typo just now.