OpenGL纹理,黑色方块

时间:2014-11-30 22:19:57

标签: c linux opengl glsl

我正在试图找出在OpenGL中渲染单个纹理的正确方法,我已经取得了一些进展,但我只是得到了一个黑色方块。 我只是不确定是否有我不做的事情,或者我是不是按照正确的顺序做事,或者我在某个地方犯了错误。互联网上的所有文章似乎都说完全不同的东西,代码总是被分成很小的样本,所以我永远无法弄清楚主循环中的内容应该是什么,不应该是什么。

首先,这是我到目前为止所拥有的。 我使用FreeImage加载图像:

FIBITMAP *load_image(image_data *image)
{
    image->texture_id = 0;
    FreeImage_Initialise(FALSE);
    FIBITMAP *bitmap = NULL;
    FREE_IMAGE_FORMAT format = FreeImage_GetFIFFromFilename(image->path);

    if (!(bitmap = FreeImage_Load(
                    format,
                    image->path,
                    PNG_DEFAULT)))
        exit(EXIT_FAILURE);

    glGenTextures(1, &(image->texture_id));
    glBindTexture(GL_TEXTURE_2D, image->texture_id);
    glTexImage2D(
            GL_TEXTURE_2D,
            0,
            GL_BGR,
            FreeImage_GetWidth(bitmap),
            FreeImage_GetHeight(bitmap),
            0,
            GL_BGR,
            GL_UNSIGNED_INT,
            bitmap);
    FreeImage_Unload(bitmap);
    return bitmap;
}

然后在这里我有我的主程序循环:

void main_loop(
        image_data *image,
        shader_info *vertex_shader,
        shader_info *fragment_shader)
{
    /* Create variables to house vertex-array/vertex-buffer object names. */
    GLuint vArray, vBuffer, program, uniform_mytexture;

    /* NDC (x, y) pair for each vertex. */
    GLfloat vertices[4][2] = {
        {-0.90, -0.90},
        {0.90, -0.90},
        {-0.90, 0.90},
        {0.90, 0.90}};

    printf("%s\n", glGetString(GL_VERSION));

    /*
     * Allocates OpenGL memory, and binds vArray and vBuffer
     * to that memory for use as VAO and VBO names, repectively.
     */
    program = initialize_image(
            &vArray,
            &vBuffer,
            vertices,
            sizeof(vertices),
            vertex_shader,
            fragment_shader);

    /* Main display loop */
    while (!glfwWindowShouldClose(window.glfw_window))
    {
        glClear(GL_COLOR_BUFFER_BIT);
        glClearColor(0.0, 0.5, 0.0, 1.0);
        glViewport(0, 0, window.width, window.height);
        glUseProgram(program);
        glBindVertexArray(vArray);
        glActiveTexture(GL_TEXTURE0);
        glBindTexture(GL_TEXTURE_2D, image->texture_id);
        uniform_mytexture = glGetUniformLocation(program, "mytexture");
        glUniform1i(uniform_mytexture, GL_TEXTURE0);
        glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
        glfwSwapBuffers(window.glfw_window);
        glfwPollEvents();
        glFlush();
    }
    return;
}

正如你所看到的,我在initialize_image()中做了大部分glGen *和glBind *的东西,看起来像这样:

int initialize_image(
        GLuint*vArray,
        GLuint *vBuffer,
        GLfloat vertices[][2],
        int size,
        shader_info *vertex_shader,
        shader_info *fragment_shader)
{
    GLuint vShader, fShader, program, link_ok;
    GLint attribute_vpos, attribute_texcoord;
    const char *attribute_name_vpos = "vertex_position", *attribute_name_texcoord = "texcoord";

    glGenVertexArrays(1, vArray);
    glBindVertexArray(*vArray);
    glGenBuffers(1, vBuffer);
    glBindBuffer(GL_ARRAY_BUFFER, *vBuffer);
    glBufferData(
            GL_ARRAY_BUFFER,
            size,
            vertices,
            GL_STATIC_DRAW);

    vertex_shader->content = load_shader(vertex_shader->path);
    fragment_shader->content = load_shader(fragment_shader->path);
    vShader = compile_shader(GL_VERTEX_SHADER, vertex_shader->content);
    fShader = compile_shader(GL_FRAGMENT_SHADER, fragment_shader->content);
    program = glCreateProgram();
    glAttachShader(program, vShader);
    glAttachShader(program, fShader);
    glLinkProgram(program);
    glGetProgramiv(program, GL_LINK_STATUS, &link_ok);

    if (!link_ok)
    {
        fprintf(stderr, "Shader linkage failed.\n");
        exit(EXIT_FAILURE);
    }

    attribute_vpos = glGetAttribLocation(program, attribute_name_vpos);

    if (attribute_vpos == -1)
    {
        fprintf(stderr, "Attribute binding failed.\n");
        exit(EXIT_FAILURE);
    }

    glVertexAttribPointer(
            attribute_vpos,
            2,
            GL_FLOAT,
            GL_FALSE,
            0,
            BUFFER_OFFSET(0));
    glEnableVertexAttribArray(attribute_vpos);

    attribute_texcoord = glGetAttribLocation(program, attribute_name_texcoord);

    if (attribute_texcoord == -1)
    {
        fprintf(stderr, "Attribute binding failed.\n");
        exit(EXIT_FAILURE);
    }

    glEnableVertexAttribArray(attribute_texcoord);

    GLuint texture_vbo;
    GLfloat texture_coords[4][2] = {
        {-1.0, -1.0},
        {1.0, -1.0},
        {-1.0, 1.0},
        {1.0, 1.0}};

    glGenBuffers(1, &texture_vbo);
    glBindBuffer(GL_ARRAY_BUFFER, texture_vbo);
    glBufferData(GL_ARRAY_BUFFER, sizeof(texture_coords), texture_coords, GL_STATIC_DRAW);
    glEnableVertexAttribArray(attribute_texcoord);
    glBindBuffer(GL_ARRAY_BUFFER, texture_vbo);
    glVertexAttribPointer(
            attribute_texcoord,
            2,
            GL_FLOAT,
            GL_FALSE,
            0,
            0);

    return program;
}

这是我的顶点着色器:

#version 330 core

layout(location = 0) in vec4 vertex_position;
attribute vec2 texcoord;
varying vec2 f_texcoord;

void main(void)
{
    gl_Position = vertex_position;
    f_texcoord = texcoord;
    return;
}

片段着色器:

#version 330 core

out vec4 fragment_color;
varying vec2 f_texcoord;
uniform sampler2D mytexture;

void main(void)
{
    fragment_color = texture2D(mytexture, f_texcoord);
    return;
}

我很遗憾抛弃这么多代码,我无法确定我哪里出错了所以我不想留下任何东西。 如果有人能指出我正确的方向,我会非常感激。

我一直想弄清楚如何做好几天。我觉得花这么多时间在OpenGL的一个最基本的功能上是无能为力的。

3 个答案:

答案 0 :(得分:3)

此代码中存在许多问题:

  1. 据我所知,GL_BGR无效作为内部纹理格式。此外,将GL_UNSIGNED_INT指定为glTexImage2D()的类型意味着每个组件是无符号整数,而纹理加载例程很可能为组件提供无符号字节。 bitmap是指向FIBITMAP对象的指针,而最后一个参数需要是指向实际图像数据的指针。所以电话应该是:

    glTexImage2D(
        GL_TEXTURE_2D,
        0,
        GL_RGB8,
        FreeImage_GetWidth(bitmap),
        FreeImage_GetHeight(bitmap),
        0,
        GL_BGR,
        GL_UNSIGNED_BYTE,
        FreeImage_GetBits(bitmap));
    
  2. 纹理采样器统一变量的值是错误的:

    glUniform1i(uniform_mytexture, GL_TEXTURE0);
    

    这需要是纹理单元的索引,而不是相应的枚举值。将呼叫替换为:

    glUniform1i(uniform_mytexture, 0);
    
  3. 着色器代码使用核心配置文件中不可用的一些存储限定符。 attributevarying在核心配置文件中无效。 attribute替换in,顶点着色器中varying替换out,片段着色器中in替换layout(location = 0) in vec4 vertex_position; layout(location = 1) in vec2 texcoord; out vec2 f_texcoord; 。所以顶点着色器中的声明应该是:

    out vec4 fragment_color;
    in vec2 f_texcoord;
    uniform sampler2D mytexture;
    

    并在片段着色器中:

    {{1}}

答案 1 :(得分:2)

嗯,对于初学者来说,你的图像加载程序是完全错误的。

FIBITMAP *load_image(image_data *image)
{
    image->texture_id = 0;
    FreeImage_Initialise(FALSE);
    FIBITMAP *bitmap = NULL;
    FREE_IMAGE_FORMAT format = FreeImage_GetFIFFromFilename(image->path);

    if (!(bitmap = FreeImage_Load(
                    format,
                    image->path,
                    PNG_DEFAULT)))
        exit(EXIT_FAILURE);

    glGenTextures(1, &(image->texture_id));
    glBindTexture(GL_TEXTURE_2D, image->texture_id);
    glTexImage2D(
            GL_TEXTURE_2D,
            0,
            GL_BGR,
            FreeImage_GetWidth(bitmap),
            FreeImage_GetHeight(bitmap),
            0,
            GL_BGR,
            GL_UNSIGNED_INT, //I think FreeImage only loads bytes...
            bitmap); //...Hello, undefined behaviour...
    FreeImage_Unload(bitmap);
    return bitmap; //WHAT?
}

另外,FreeImage_Initialise和FreeImage_Deinitialise只能在每个程序中调用一次。

答案 2 :(得分:2)

我很确定如果您正在加载PNG,您不希望GL_UNSIGNED_INT用于像素数据类型(这意味着96位RGB图像)。相反,您可能需要GL_UNSIGNED_BYTE(24位)。

将您的通话更改为glTexImage2D

glTexImage2D(
        GL_TEXTURE_2D,
        0,
        GL_RGB,
        FreeImage_GetWidth  (bitmap),
        FreeImage_GetHeight (bitmap),
        0,
        GL_BGR,
        GL_UNSIGNED_BYTE, // Assumption: FreeImage_GetBPP (bitmap) == 24
        FreeImage_GetBits (bitmap));

通常,当读取24位RGB图像时,您必须将GL的解包对齐从4字节更改为1字节,但FreeImage保证了我将在下面说明的一些所需行为(如果您遇到任何调用{{ 1}} - 它们不适用于此处。)

FreeImage 3.13.1 documentation - 位图函数参考 - p。 14

  

在FreeImage中,出于性能原因,每条扫描线都以 32位边界开始。

我建议您在浏览时浏览其余的API参考。你可以使用其中的许多功能来消除我上面提到的24位图像假设。