有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

基于四边形的java Opengl纹理

这是我的纹理类的内容:

public int id;

public Texture(InputStream inputStream) {
    ByteBuffer buf = null;
    int tWidth = 0;
    int tHeight = 0;

    try {
        PNGDecoder decoder = new PNGDecoder(inputStream);
        buf = ByteBuffer.allocateDirect(4*decoder.getWidth()*decoder.getHeight());
        decoder.decode(buf, decoder.getWidth()*4, PNGDecoder.TextureFormat.RGBA);
        buf.rewind();
        inputStream.close();
    } catch (IOException exception) {
        ErrorHandler.handleError("Failed to load image", exception);
    }

    id = glGenTextures();
    glActiveTexture(id);
    glBindTexture(GL_TEXTURE_2D, id);
    glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, tWidth, tHeight, 0, GL_RGBA, GL_UNSIGNED_BYTE, buf);

    glBindTexture(GL_TEXTURE_2D, 0);
}

我是这样渲染的:

    glActiveTexture(background.id);
    glBindTexture(GL_TEXTURE_2D, background.id);

    glBindBuffer(GL_ARRAY_BUFFER, vboVertexHandle);
    glEnableVertexAttribArray(0);
    glEnableVertexAttribArray(1);

    glVertexAttribPointer(0, 3, GL_FLOAT, false, 0, 0);
    glVertexAttribPointer(1, 2, GL_FLOAT, false, 0, 4*18);

    glDrawArrays(GL_TRIANGLES, 0, 6);

    glDisableVertexAttribArray(0);
    glDisableVertexAttribArray(1);

    glBindTexture(GL_TEXTURE_2D, 0);

这是片段着色器:

#version 330

in vec2 textureCoordinate;

out vec4 outputColor;

uniform sampler2D texture_diffuse;

void main() {
    outputColor.rgb = vec3(1.0f, 1.0f, 1.0f);
    outputColor += texture2D(texture_diffuse, textureCoordinate);
}

我做错了什么传递到着色器程序的纹理坐标是100%正确的(我选中)。但我还是有一辆白色的四轮车

注意:我使用thispng解码器

编辑: 我将每4个字节的浮点值打印到控制台,得到0.00.00.00.0。。。。这是否意味着纹理被间接加载,或者信息以不同的格式存储到缓冲区


共 (1) 个答案

  1. # 1 楼答案

    碎片着色器看起来不正确-您设置了白色并添加了纹理中的值,因此它将钳制为白色。就这样做吧

    void main() {
        outputColor.a = 1.0f;
        outputColor.rgb = texture2D(texture_diffuse, textureCoordinate);
    }