我在Linux Mint 13 XFCE上。我的問題是,當我在終端中運行命令:爲什麼glGetString(GL_VERSION)返回null /零而不是OpenGL版本?
glxinfo | grep "OpenGL version"
我得到以下輸出:
OpenGL version string: 3.3.0 NVIDIA 295.40
但是,當我在我的應用程序運行glGetString(GL_VERSION)
則結果爲空。爲什麼這段代碼沒有得到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));
}
的Qt Creator是一個IDE和已經很少做你的問題BTW。 (嗯,沒有什麼) – Bart
如果你包含'glut.h',你不需要包含'gl.h'或'glu.h'。 – Derek
同樣的根本原因:http://stackoverflow.com/questions/6594214/glgetintegerv-returning-garbage-value –