尝试使用SDL + GLEW时出现分段错误

时间:2011-10-17 03:27:16

标签: opengl sdl glew

我正在尝试学习如何使用GLEW将SDL与OpenGL一起用于扩展方法。据我所知,从SDL角落的Using OpenGL with SDL等页面可以看出以下代码可以正常工作

#include <glew.h>
#include <SDL.h>

#include <cstdlib>

int main(int argc, char *argv[]) {
    if (SDL_Init( SDL_INIT_EVERYTHING ) != 0) exit(EXIT_FAILURE);
    if (SDL_GL_LoadLibrary( NULL ) != 0) exit(EXIT_FAILURE);
    if (SDL_SetVideoMode(640, 480, 0, SDL_OPENGL) == NULL) exit(EXIT_FAILURE);
    if (glewInit() != GLEW_OK) exit(EXIT_FAILURE);

    glViewport(0, 0, 640, 480);

    while (1) {
        glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);

        glMatrixMode(GL_PROJECTION);
        glLoadIdentity();
        gluPerspective(50.0, 1.0, 0.1, 1000.0);

        glMatrixMode(GL_MODELVIEW);
        glLoadIdentity();
        gluLookAt(0.0, 0.0, 3.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0);

        glPolygonMode(GL_FRONT, GL_FILL);

        glBegin(GL_QUADS);
            glColor3f(1, 0, 0); glVertex3f(0, 0, 0);
            glColor3f(1, 1, 0); glVertex3f(3, 0, 0);
            glColor3f(1, 0, 1); glVertex3f(3, 3, 0);
            glColor3f(1, 1, 1); glVertex3f(0, 3, 0);
        glEnd();

        SDL_GL_SwapBuffers();
    }

    SDL_Quit();
    return 0;
}

然而,当试图呼叫glViewport时,它只是第12行的段错误。这是在OS X 10.7上编译的:

clang++ -g $(pkg-config --cflags sdl gl glu glew) -o test test.cpp $(pkg-config --libs sdl gl glu glew)

SDL版本为1.2.14,GLEW版本为1.7.0。

1 个答案:

答案 0 :(得分:0)

尝试将投影和模型视图部分放在while循环之外,并在投影之后放置glViewport:

#include <glew.h>
#include <SDL.h>

#include <cstdlib>

int main(int argc, char *argv[]) {
    if (SDL_Init( SDL_INIT_EVERYTHING ) != 0) exit(EXIT_FAILURE);
    if (SDL_GL_LoadLibrary( NULL ) != 0) exit(EXIT_FAILURE);
    if (SDL_SetVideoMode(640, 480, 0, SDL_OPENGL) == NULL) exit(EXIT_FAILURE);
    if (glewInit() != GLEW_OK) exit(EXIT_FAILURE);

    glMatrixMode(GL_PROJECTION);
    glLoadIdentity();
    glViewport(0, 0, 640, 480);
    gluPerspective(50.0, 1.0, 0.1, 1000.0);

    glMatrixMode(GL_MODELVIEW);
    glLoadIdentity();
    gluLookAt(0.0, 0.0, 3.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0);

    while (1) {
        glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);

        glPolygonMode(GL_FRONT, GL_FILL);

        glBegin(GL_QUADS);
            glColor3f(1, 0, 0); glVertex3f(0, 0, 0);
            glColor3f(1, 1, 0); glVertex3f(3, 0, 0);
            glColor3f(1, 0, 1); glVertex3f(3, 3, 0);
            glColor3f(1, 1, 1); glVertex3f(0, 3, 0);
        glEnd();

        SDL_GL_SwapBuffers();
    }

    SDL_Quit();
    return 0;
}
相关问题