C ++ OpenGL glCreateProgram在Windows上返回0

时间:2014-03-05 03:05:02

标签: c++ visual-studio-2010 opengl

我正在使用C ++和Visual Studio学习OpenGL,当我运行程序时,它会快速提示显示窗口,然后崩溃导致我到一个断点,在OpenGL.exe中显示“0x00000000处的未处理异常:0xC000000005:Access违反“。

这是我的代码:

#include <iostream>
#include <string>
#include <fstream>

#include <sdl2/SDL.h>
#include <gl/glew.h>

GLuint crearShader (const std :: string & texto, GLenum tipo);
std :: string cargarShader (const std :: string & nombreArchivo);
void comprobarErrorShader (GLuint shader, GLuint flag, bool esPrograma, const std :: string & mensaje);

void display () 
{
    SDL_Init(SDL_INIT_EVERYTHING);

    SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 8);
    SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 8);
    SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8);
    SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, 8);
    SDL_GL_SetAttribute(SDL_GL_BUFFER_SIZE, 32);
    SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);

    SDL_Window * ventana = SDL_CreateWindow("OpenGL", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 
    640, 480, SDL_WINDOW_OPENGL);
    SDL_GLContext contexto = SDL_GL_CreateContext(ventana);
    GLenum estado = glewInit();

    if (estado != GLEW_OK) 
    {
        std :: cerr << "Fallo al inicializar Glew." << std :: endl;
        exit(EXIT_FAILURE);
    }

    GLuint programa = glCreateProgram(); // <-- Problem goes here.
    const unsigned int NUM_SHADERS = 2;
    GLuint shaders[ NUM_SHADERS ];
    shaders[0] = crearShader(cargarShader("./shaderBasico.vs"), GL_VERTEX_SHADER);
    shaders[1] = crearShader(cargarShader("./shaderBasico.fs"), GL_FRAGMENT_SHADER);
    unsigned int i;

    for (i = 0; i < NUM_SHADERS; i++) 
    {
        glAttachShader(programa, shaders[ i ]);
    }

    glLinkProgram(programa);
    comprobarErrorShader(programa, GL_LINK_STATUS, true, "Error: Fallo al vincular el programa: ");

    glValidateProgram(programa);
    comprobarErrorShader(programa, GL_VALIDATE_STATUS, true, "Error: El programa es invalido: ");

    SDL_Event evento;

    do 
    {
        glClearColor(0x00, 0x00, 0x00, 1.0f);
        glClear(GL_COLOR_BUFFER_BIT);
        glUseProgram(programa);
        SDL_GL_SwapWindow(ventana);
        SDL_PollEvent(&evento);
    }
    while (evento.type != SDL_QUIT) ;

    for (i = 0; i < NUM_SHADERS; i++) 
    {
        glDetachShader(programa, shaders[ i ]);
        glDeleteShader(shaders[ i ]);
    }

    glDeleteProgram(programa);
    SDL_GL_DeleteContext(contexto);
    SDL_DestroyWindow(ventana);
    SDL_Quit();
}

GLuint crearShader (const std :: string & texto, GLenum tipo) 
{
    GLuint shader = glCreateShader(tipo);

    if (shader == 0) 
    {
        std :: cerr << "Error al crear shader." << std :: endl;
    }

    const GLchar * shaderSourceStrings[1] = {texto.c_str()};
    GLint shaderSourceStringLengths[1] = {texto.length()};
    glShaderSource(shader, 1, shaderSourceStrings, shaderSourceStringLengths);
    glCompileShader(shader);

    comprobarErrorShader(shader, GL_COMPILE_STATUS, true, "Error: Fallo al vincular el programa: ");

    return shader;
}

std :: string cargarShader (const std :: string & nombreArchivo) 
{
    std :: ifstream archivo;
    archivo.open(nombreArchivo.c_str());

    std :: string salida;
    std :: string linea;

    if (archivo.is_open()) 
    {
        while (archivo.good()) 
        {
            getline(archivo, linea);
            salida.append(linea + "\n");
        }
    }
    else
    {
        std :: cerr << "Error, no se pudo cargar un shader." << std :: endl;
    }

    return salida;
}

void comprobarErrorShader (GLuint shader, GLuint flag, bool esPrograma, const std :: string & mensaje) 
{
    GLint exito = 0;
    GLchar error[1024] = { 0 };

    if (esPrograma) 
    {
        glGetProgramiv(shader, flag, &exito);
    }
    else
    {
        glGetShaderiv(shader, flag, &exito);
    }

    if (exito == GL_FALSE) 
    {
        if (esPrograma) 
        {
            glGetProgramInfoLog(shader, sizeof error, NULL, error);
        }
        else
        {
            glGetShaderInfoLog(shader, sizeof error, NULL, error);
        }

        std :: cerr << mensaje << ": '" << error << "'" << std :: endl;
    }
}

int main (int argc, char * argv[]) 
{
    display();

    return 0;
}

正如你所看到的,我在创建程序之前初始化了glew并仍然给我错误,任何想法?

2 个答案:

答案 0 :(得分:3)

  

glGetString(GL_VERSION)返回 1.4.0 - Build 8.14.10.2364

那么你去,glCreateProgram()不是OpenGL 1.4的核心。

GLEW很可能将glCreateProgram()设置为NULL。

Check如果您的总帐实施支持ARB_vertex_shaderARB_fragment_shaderARB_shader_objects,请使用这些ARB功能。

如果不支持,那么除非您想使用像Mesa这样的软件光栅化器,否则您在着色器前端是SOL。

答案 1 :(得分:3)

我有同样的问题。我在我的macbook上通过rdp连接运行visual studio。当我在托管连接的PC上运行它时,它工作正常。