gpt4 book ai didi

Java - LWJGL 中的绑定(bind)纹理导致白屏

转载 作者:行者123 更新时间:2023-12-01 12:01:53 25 4
gpt4 key购买 nike

最近我一直在尝试实现我自己的 PNG 纹理解码器/加载器,但是就像我之前的几次尝试一样,结果是相同的......没有纹理。这是我当前用于加载图像的代码(不是我的!我忘记了网站):

public static TextureObject loadTexture(BufferedImage image)
{
int[] pixels = new int[image.getWidth() * image.getHeight()];
image.getRGB(0, 0, image.getWidth(), image.getHeight(), pixels, 0, image.getWidth());

ByteBuffer buffer = BufferUtils.createByteBuffer(image.getWidth() * image.getHeight() * 4); //4 for RGBA, 3 for RGB

for(int y = 0; y < image.getHeight(); y++){
for(int x = 0; x < image.getWidth(); x++){
int pixel = pixels[y * image.getWidth() + x];
buffer.put((byte) ((pixel >> 16) & 0xFF)); // Red component
buffer.put((byte) ((pixel >> 8) & 0xFF)); // Green component
buffer.put((byte) (pixel & 0xFF)); // Blue component
buffer.put((byte) ((pixel >> 24) & 0xFF)); // Alpha component. Only for RGBA
}
}

buffer.flip();
GL11.glEnable(GL11.GL_TEXTURE_2D);
int textureID = GL11.glGenTextures();
GL11.glTexImage2D(GL11.GL_TEXTURE_2D, 0, GL11.GL_RGBA8, image.getWidth(), image.getHeight(), 0, GL11.GL_RGBA, GL11.GL_UNSIGNED_BYTE, buffer);
return new TextureObject(textureID, image.getWidth(), image.getHeight());
}

搜索类似的问题都返回相同的原因,未启用 GL_TEXTURE_2D。
我已启用此功能,并给出了我的四边形纹理坐标。
当我绑定(bind)纹理并尝试渲染它时,opengl 决定让整个屏幕变白。我的项目中有 Slick-Util 进行测试,它渲染效果很好。
但是,如果我的 render() 函数中有以下代码:

    GL11.glColor3f(1.0F, 1.0F, 1.0F);    

if(RenderUtil.fontTexture != null) RenderUtil.renderTexturedQuad(RenderUtil.fontTexture, 40, 40, 150, 150);
Main.t.bind();
GL11.glBegin(GL11.GL_QUADS);
GL11.glTexCoord2f(0, 0);
GL11.glVertex2f(0, 0);
GL11.glTexCoord2f(0, 1);
GL11.glVertex2f(0, 512);
GL11.glTexCoord2f(1, 1);
GL11.glVertex2f(512, 512);
GL11.glTexCoord2f(1, 0);
GL11.glVertex2f(512, 0);
GL11.glEnd();

...主要是if(RenderUtil.fontTexture != null) RenderUtil.renderTexturedQuad(RenderUtil.fontTexture, 40, 40, 150, 150),OpenGL不会渲染任何东西。即使绑定(bind)光滑的纹理并尝试渲染也会失败。以下是完整的 renderTexturedQuad() 方法:

public static void renderTexturedQuad(TextureObject texture, int x, int y, int w, int h)
{
GL11.glColor3f(1.0F, 1.0F, 1.0F);
GL11.glEnable(GL11.GL_TEXTURE_2D);
TextureUtil.bind(texture);
GL11.glPushMatrix();
GL11.glTranslatef(x, y, 0);
GL11.glBegin(GL11.GL_QUADS);
GL11.glTexCoord2f(0, 0);
GL11.glVertex2f(0, 0);
GL11.glTexCoord2f(0, 1);
GL11.glVertex2f(0, h);
GL11.glTexCoord2f(1, 1);
GL11.glVertex2f(w, h);
GL11.glTexCoord2f(1, 0);
GL11.glVertex2f(w, 0);
GL11.glEnd();
GL11.glPopMatrix();
}

我看到的唯一可能导致错误的事情是我的纹理的绑定(bind)?

我希望您不要推荐我去图书馆或同等机构,这是一次学习经历:)

最佳答案

在将图像数据加载到纹理之前,您需要绑定(bind)纹理。如果不这样做,glTexImage2D 就不知道在哪里加载数据。

您可以通过调用来绑定(bind)纹理:

GL11.glBindTexture(GL11.GL_TEXTURE_2D, textureID);

之前:

GL11.glTexImage2D(GL11.GL_TEXTURE_2D, 0, GL11.GL_RGBA8, image.getWidth(), image.getHeight(), 0, GL11.GL_RGBA, GL11.GL_UNSIGNED_BYTE, buffer);

您还应该在加载图像数据后调用这些行:

    GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_WRAP_S, GL11.GL_REPEAT);
GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_WRAP_T, GL11.GL_REPEAT);
GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MIN_FILTER, GL11.GL_LINEAR);
GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MAG_FILTER, GL11.GL_NEAREST);

关于Java - LWJGL 中的绑定(bind)纹理导致白屏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27934864/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com