glfwOpenWindow返回错误

时间:2013-07-01 00:10:55

标签: 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。这有什么问题?

0 个答案:

没有答案