我正在使用Linux Mint 13 XFCE。我的问题是,当我在终端中运行命令时:

glxinfo | grep "OpenGL version"

我得到以下输出:
OpenGL version string: 3.3.0 NVIDIA 295.40

但是,当我在应用程序中运行glGetString(GL_VERSION)时,结果为null。为什么此代码未获得gl_version
#include <stdio.h>
#include <GL/glew.h>
#include <GL/gl.h>
#include <GL/glu.h>
#include <GL/glut.h>
#include <GL/glext.h>

int main(int argc, char **argv) {

    glutInit(&argc, argv);
    glewInit();

    printf("OpenGL version supported by this platform (%s): \n",
        glGetString(GL_VERSION));
}

最佳答案

glutInit()不会创建GL context或将其设为最新。您需要当前的GL上下文才能使glewInit()glGetString()工作。

尝试这个:

#include <GL/glew.h>
#include <GL/glut.h>
#include <cstdio>

int main(int argc, char **argv)
{
    glutInit(&argc, argv);
    glutCreateWindow("GLUT");

    glewInit();
    printf("OpenGL version supported by this platform (%s): \n", glGetString(GL_VERSION));
}

关于c++ - 为什么glGetString(GL_VERSION)返回null/zero而不是OpenGL版本?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12184506/

10-11 22:53