29

私はLinuxMint13XFCEを使用しています。私の問題は、ターミナルで実行すると次のコマンドが実行されることです。

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));
}
4

2 に答える 2

42

glutInit()GLコンテキストを作成し たり、現在のコンテキストを作成したりしません。glewInit()とが機能するには、現在のGLコンテキストが必要です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));
}
于 2012-08-29T18:48:50.623 に答える
2

glfwGLコンテキストを作成してから、バージョンを照会するために使用することもできます。

このファイルを含めます:

#include "GL/glew.h"
#include "GLFW/glfw3.h"

そして、あなたは次のことができます:

    // Initialise GLFW
    glewExperimental = true; // Needed for core profile
    if (!glfwInit())
    {
        return "";
    }

    // We are rendering off-screen, but a window is still needed for the context
    // creation. There are hints that this is no longer needed in GL 3.3, but that
    // windows still wants it. So just in case.
    glfwWindowHint(GLFW_VISIBLE, GL_FALSE); //dont show the window

    // Open a window and create its OpenGL context
    GLFWwindow* window;
    window = glfwCreateWindow(100, 100, "Dummy window", NULL, NULL);
    if (window == NULL) {
        return "";
    }
    glfwMakeContextCurrent(window); // Initialize GLEW
    if (glewInit() != GLEW_OK)
    {
        return "";
    }

    std::string versionString = std::string((const char*)glGetString(GL_VERSION));
于 2019-03-10T10:16:50.750 に答える