OpenGL 3D Game Tutorial 1: The Display

LWJGL 2 tutorial series on how to create a 3D Java game with OpenGL! Tutorial about setting up the project: Common Problems: -in case you had annotations off, you need to do the ContextAttribs stuff all in one line like this: ContextAttribs attribs = new ContextAttribs(3, 2).withForwardCompatible(true).withProfileCore(true); -If you get the following error: : Could not create context (WGL_ARB_create_context) then your computer may not support the ver
Back to Top