标签: c++ glfw
我正在尝试使用以下方法在glfw中打开一个窗口:
if( !glfwOpenWindow( 1024, 768, 0,0,0,0, 32,0, GLFW_WINDOW ) ) { fprintf( stderr, "Failed to open GLFW window\n" ); glfwTerminate(); return -1; }
除了打印Failed to open GLFW window。这有什么问题?
Failed to open GLFW window