我用glfw设置OpenGL 3.3应用程序时遇到问题。我懂了
OpenGL profile requested but GLX_ARB_create_context_profile is unavailable
我尝试通过optirun运行应用程序时出现错误(我有Nvidia Optimus卡,所以没有其他方法)。其他OpenGL> 3.3应用程序与optirun(unigine天堂)... Here is code I try to run配合良好,这是result of "optirun glxinfo"。
最佳答案
您确定需要此行吗?
glfwOpenWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
删除它应该可以解决问题。
如果出现段错误,请检查this question。
关于c++ - OpenGL 3.3 GLX_ARB_create_context_profile在带有大黄蜂的Linux上不可用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11383651/