LWJGL glfwCreateWindow() the share parameter not working
In what way is it not working?
Its not sharing the VBOs VAOs and textures
As far as I know, shared contexts cannot share VAOs and FBOs, because those are states in OpenGL. But textures should be shared.
Yes, what @sriharshachilakapati said. If textures or VBOs weren't shared then that may be a bug in LWJGL, a driver issue or an incorrect use of glfwCreateWindow. To verify object sharing on only GLFW and the driver involved, run thesharing test that is built along with the GLFW library.
Has this been resolved?
Most helpful comment
As far as I know, shared contexts cannot share VAOs and FBOs, because those are states in OpenGL. But textures should be shared.