22

我应该有最新版本的 Glew 和 Glut,所以这不应该是问题。一切都应该链接,我正在使用 MS Visual Studio 2010。我的程序编译但是当我到达 glCreateShader(GL_FRAGMENT_SHADER) 时它显示一个错误:“0xC0000005:访问冲突。”

我的程序:

#include <GL\glew.h>
#include <GL\glut.h>
#include <stdio.h>
#include <stdlib.h>

GLuint program;

static char* readShaderSource(const char * shaderFile)
{
    FILE* fp = fopen(shaderFile, "r");
    char* buf;
    long size;

    if (fp == NULL) return NULL; 
    fseek(fp, 0L, SEEK_END);//go to end
    size = ftell(fp);       //get size
    fseek(fp, 0L, SEEK_SET);//go to begining

    buf = (char*) malloc((size +1) * sizeof(char));
    fread(buf, 1, size, fp);
    buf[size] = NULL;
    fclose(fp);
    return buf;
}

static void initShader(const GLchar * fsFile)
{
    GLint status;
    GLchar * fSource;
    GLuint fShader;
    GLuint fShader2;

    //read file
    fSource = readShaderSource(fsFile);
    if (fSource == NULL)
    {
        printf("Fail to load file");
        exit(EXIT_FAILURE);
    }

    //Create program and shader object
    fShader2 = glCreateShader(GL_VERTEX_SHADER);
    fShader = glCreateShader(GL_FRAGMENT_SHADER);
    program = glCreateProgram();

    //Attach shaders to program
    glAttachShader(program, fShader);

    //read shaders
    glShaderSource(fShader, 1, (const GLchar**) &fSource, NULL);

    //compile fragment shader
    glCompileShader(fShader);

    //error check
    glGetShaderiv(fShader, GL_COMPILE_STATUS, &status);
    if (status == GL_FALSE)
    {
        printf("Failed to compile the fragment shader.");
        exit(EXIT_FAILURE);
    }

    //link and error check
    glLinkProgram(program);
    glGetProgramiv(program, GL_LINK_STATUS, &status);
    if (status == GL_FALSE)
    {
        printf("program error");
        exit(EXIT_FAILURE);
    }

    //use program object
    glUseProgram(program);

    //set up uniform parameter
    //skipped for now
}

int main(int argc, char ** argv)
{
    glutInit(&argc, argv);
    glutInitDisplayMode(GLUT_SINGLE | GLUT_RGB);
    glutInitWindowSize(500,500);
    glutCreateWindow("Matrix Fractal");
    glClearColor(1.0, 1.0, 1.0, 1.0);
    gluOrtho2D(0.0,0.0,(GLfloat) 500, (GLfloat) 500);

    glutDisplayFunc(draw);
    glutReshapeFunc(reshape);

    initShader("fsFractal.glsl");

    glutMainLoop();
}
4

5 回答 5

55

您必须先初始化 GLEW,然后才能使用它:

GLenum err = glewInit();

于 2012-09-08T08:09:44.203 回答
6

还有另一种情况可能发生这种情况,而且条件远非显而易见。如果你决定在你的应用程序中使用 glfw 和 glew,你也可以在 glCreateShader() ACCESS_VIOLATION 结束,如果你写了:

glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);

如果将此行更改为

glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_COMPAT_PROFILE);

由于 NULL 函数指针 glCreateShader() 导致的 ACCESS_VIOLATION 消失了。

不要问我,这两个库 glew 和 glfw 是如何相互干扰的...... voodoo alert!

于 2014-05-08T12:31:04.377 回答
4

这是我的变体,是上面@BenRujil 回答的后续。

   glewExperimental = GL_TRUE;
    if(glewInit() != GLEW_OK)
        throw std::runtime_error("glewInit failed");
于 2014-11-05T20:24:17.203 回答
3

如果您使用 GLFWGLEW/GLXW,如果您在使用 GLFW创建有效的 openGL 上下文之前尝试初始化 GLEW/GLXW,则可能会发生地址 0 的访问冲突:

if (!glfwInit()) {
  std::cerr << "GL initialization failed" << std::endl;
  return 1;
}
// Setup the openGL profile you need - we're going with a 4.3 core profile
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 4);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
// Context creation happens in the line below
GLFWwindow *window = glfwCreateWindow(800, 600, "text", NULL, NULL);
if (!window) {
  std::cerr << "Window or GL initialization failed";
  glfwTerminate();
  return 1;
}
glfwMakeContextCurrent(window);
if (glxwInit()) { // Now it's a good time to initialize Xtension wranglers
  std::cerr << "Failed to initialize GLXW" << std::endl;
  return 1;
}

在上下文创建之前调用glxwInit()将获取设置的任何默认上下文并可能触发访问冲突(可能需要在运行时获取)。

于 2016-11-28T10:28:36.803 回答
2

如果 GLFW 有问题,您可以在他们使您的程序崩溃之前向他们询问错误消息。

窗口示例:

创建回调函数:

#include <windows.h>
void glfw_onError(int error, const char* description)
{
    // print message in Windows popup dialog box
    MessageBox(NULL, description, "GLFW error", MB_OK);
}

并将其设置在代码的最开头。

glfwSetErrorCallback(glfw_onError);

我这样做并得到“ The GLFW library is not initialized.”结果我的 GLFW 库没有初始化。事实证明本的回答是正确的。我刚刚有glfwInit()一个这样的断言:assert(glfwInit());所以当我为 Release 编译我的程序时它被剥离了。

于 2019-11-25T12:43:02.847 回答