Hello Guest

getting error i dont understand why

  • 2 Replies
  • 3371 Views
getting error i dont understand why
« on: May 11, 2019, 06:12:59 »
i was making a game with lwjgl and i got this while i was working on a new renderer for guis
https://pastebin.com/LNDKF2b6
any help with why this is happening would be nice :)

Re: getting error i dont understand why
« Reply #1 on: May 11, 2019, 06:37:55 »
ive done some research and the error occurs at
Code: [Select]
int vaoID = GL30.glGenVertexArrays();

*

Offline spasi

  • *****
  • 2261
    • WebHotelier
Re: getting error i dont understand why
« Reply #2 on: May 11, 2019, 10:38:21 »
Most likely reason is that glGenVertexArrays is not available in the current context. If you update to a later LWJGL version, you should see a message related to this. You could also try LWJGLX/debug, it will help with discovering and resolving issues.