gpt4 book ai didi

java - FBO 纹理显示全黑

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

我正在尝试关注 ThinMatrix's water tutorial 。为此,我需要创建一个 FBO 并将其渲染为纹理。

但是正如您所看到的,水是完全黑色的: enter image description here

我正在使用source code provided直接来自教程(从链接复制)。

基本上,我创建了一个 FrameBuffer:

public FrameBufferObject() {//call when loading the game
initialiseReflectionFrameBuffer();
initialiseRefractionFrameBuffer(); //Let's ignore refraction for now, as I only use reflection at the moment.
}
private void initialiseReflectionFrameBuffer() {
reflectionFrameBuffer = createFrameBuffer();
reflectionTexture = createTextureAttachment(REFLECTION_WIDTH,REFLECTION_HEIGHT);
reflectionDepthBuffer = createDepthBufferAttachment(REFLECTION_WIDTH,REFLECTION_HEIGHT);
unbindCurrentFrameBuffer();
}

然后我创建一个纹理附件:

private int createTextureAttachment( int width, int height) {
int texture = GL11.glGenTextures();
GL11.glBindTexture(GL11.GL_TEXTURE_2D, texture);
GL11.glTexImage2D(GL11.GL_TEXTURE_2D, 0, GL11.GL_RGB, width, height,
0, GL11.GL_RGB, GL11.GL_UNSIGNED_BYTE, (ByteBuffer) null);
GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MAG_FILTER, GL11.GL_LINEAR);
GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MIN_FILTER, GL11.GL_LINEAR);
GL32.glFramebufferTexture(GL30.GL_FRAMEBUFFER, GL30.GL_COLOR_ATTACHMENT0,
texture, 0);
return texture;
}

我还创建了一个深度缓冲区附件:

private int createDepthBufferAttachment(int width, int height) {
int depthBuffer = GL30.glGenRenderbuffers();
GL30.glBindRenderbuffer(GL30.GL_RENDERBUFFER, depthBuffer);
GL30.glRenderbufferStorage(GL30.GL_RENDERBUFFER, GL11.GL_DEPTH_COMPONENT, width,
height);
GL30.glFramebufferRenderbuffer(GL30.GL_FRAMEBUFFER, GL30.GL_DEPTH_ATTACHMENT,
GL30.GL_RENDERBUFFER, depthBuffer);
return depthBuffer;
}

然后,我将对象渲染到帧缓冲区对象:

Main.TerrainDemo.shader.start();
fbos.bindReflectionFrameBuffer();
for (Grass g : Main.TerrainDemo.toDraw){
g.render();
}
fbos.unbindCurrentFrameBuffer();

我像这样绑定(bind)帧缓冲区:

private void bindFrameBuffer(int frameBuffer, int width, int height){
GL11.glBindTexture(GL11.GL_TEXTURE_2D, 0);//To make sure the texture isn't bound
GL30.glBindFramebuffer(GL30.GL_FRAMEBUFFER, frameBuffer);
GL11.glViewport(0, 0, width, height);
System.out.println("Bound");
if(GL30.glCheckFramebufferStatus(GL30.GL_FRAMEBUFFER) == GL30.GL_FRAMEBUFFER_COMPLETE) {
System.out.println("Frame buffer setup is complete: " + GL30.glCheckFramebufferStatus(GL30.GL_FRAMEBUFFER));
}
System.out.println("Error: " + GL11.glGetError());
}

当我打印出glGetError()时的“错误”是一个正常的0。 “帧缓冲区设置”消息确实打印出来。

之后,我希望调用 fbos.getReflectionTexture() 将返回一个纹理 ID...而且确实如此!它成功返回纹理ID 12。但是,当我绑定(bind)它时,纹理是全黑的。

public int getReflectionTexture() {//get the resulting texture
return reflectionTexture; //Remember, this was our original texture attachment.
}
reflectionTexture = createTextureAttachment(REFLECTION_WIDTH,REFLECTION_HEIGHT);

我无法弄清楚出了什么问题,以及为什么纹理没有显示渲染给它的任何内容。

我所知道的事情没有错误:

我确实正确地绘制和纹理化了水本身。我可以使用任何预加载的纹理并对水进行纹理处理: enter image description here

此外,渲染到 FBO 的对象具有正确的平移、旋转等。如果我不绑定(bind)任何帧缓冲区,则用于 FBO 的树叶会在屏幕上正确绘制(并看到)。

最佳答案

所以我意识到这是一个非常古老的问题,可能没有人再关心了,但我最近在完成相同的教程并遇到类似的问题后发现自己在这里。

在练习了一些 google foo 之后,我意识到我在代码中犯了一个非常基本的错误,这可能是相同的解决方案。

我根本就没有做;

GL11.glClear(GL11.GL_COLOR_BUFFER_BIT | GL11.GL_DEPTH_BUFFER_BIT);

在再次填充之前,正在使用帧缓冲区对象:

我只是继续将其放在绑定(bind)帧缓冲区函数的末尾,然后我就成功了!

 private void bindFrameBuffer(int frameBuffer, int width, int height){
GL11.glBindTexture(GL11.GL_TEXTURE_2D, 0);//To make sure the texture isn't bound
GL30.glBindFramebuffer(GL30.GL_FRAMEBUFFER, frameBuffer);
GL11.glViewport(0, 0, width, height);
System.out.println("Bound");
if(GL30.glCheckFramebufferStatus(GL30.GL_FRAMEBUFFER) == GL30.GL_FRAMEBUFFER_COMPLETE) {
System.out.println("Frame buffer setup is complete: " + GL30.glCheckFramebufferStatus(GL30.GL_FRAMEBUFFER));
}
System.out.println("Error: " + GL11.glGetError());
}

可能不是同一个问题,因为我的错误特别基本,但值得一试。

有谁知道这个解决方案是否正确,或者它是解决更大问题的创可贴吗?

关于java - FBO 纹理显示全黑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33760638/

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