随笔 - 547  文章 - 213 评论 - 417 阅读 - 107万

 

I set up a minimal application to open a blank window with GLFW3:

#include <iostream>

#include <GL/glew.h>

#include <GLFW/glfw3.h>

 

void glfwErrorCallback(int error, const char *description)

{

std::cerr << "GLFW error " << error << ": " << description << std::endl;

}

 

int main(int argc, char **argv)

{

GLFWwindow* window;

glfwSetErrorCallback(glfwErrorCallback);

 

if(!glfwInit())

{

std::cerr << "Failed to initialize GLFW...\n";

return -1;

}

 

glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 4);

glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);

glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);

 

window = glfwCreateWindow(1024, 768, "GLFW window", NULL, NULL);

if(!window)

{

std::cerr << "Failed to open GLFW window...\n";

glfwTerminate();

return -1;

}

 

glewExperimental = GL_TRUE;

if (glewInit())

{

std::cerr << "Failed to initialize GLEW...\n";

glfwTerminate();

return -1;

}

 

glfwMakeContextCurrent(window);

 

while (glfwGetKey(window, GLFW_KEY_ESCAPE) != GLFW_PRESS && !glfwWindowShouldClose(window))

{

glfwSwapBuffers(window);

glfwPollEvents();

}

 

glfwTerminate();

return 0;

}

It results in the following error:

GLFW error 65540: Context profiles only exist for OpenGL version 3.2 and above
Failed to open GLFW window...

The application is run on Linux with Bumblebee's optirun. The code works when using freeglut instead of GLFW. What is wrong with the code that results in the error?

 

[解决方法]

This is pretty simple:

glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 4); // Major = 4

glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); // Major was 4, now it is 3.

 

// Minor = ??? [Something < 2]

You need to use glfwWindowHint (GLFW_CONTEXT_VERSION_MINOR, 3); instead for the second hint.

 

答案来源于: http://stackoverflow.com/questions/21395249/creating-opengl-4-3-window-fails-with-glfw3

 

我的机器是OpenGL4.2, 运行sb7code, 用这个方法也解决了。

posted on   今夜太冷  阅读(2004)  评论(0编辑  收藏  举报
编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 地球OL攻略 —— 某应届生求职总结
· 提示词工程——AI应用必不可少的技术
· Open-Sora 2.0 重磅开源!
· 周边上新:园子的第一款马克杯温暖上架
历史上的今天:
2008-02-13 一个不错的网站策划网站
2008-02-13 一个不错的验证码的例子
2008-02-13 移除html标记
点击右上角即可分享
微信分享提示