gpt4 book ai didi

c++ - 如果现代 opengl 中有多个纹理,则没有纹理

转载 作者:太空宇宙 更新时间:2023-11-04 12:39:21 25 4
gpt4 key购买 nike

我将 C++ 和 OpenGL 4.6 与 SDL2 和 glew 一起使用。我有一个类纹理:

#include "stb_image/stb_image.h"
class Texture {
private:
unsigned int m_RendererID;
std::string m_FilePath;
unsigned char *m_LocalBuffer;
int m_Width, m_Height, m_BPP;
public:
Texture(const std::string &path);
~Texture();

void Bind(unsigned int slot = 0) const;
void Unbind() const;

inline int GetWidth() const { return m_Width; }
inline int GetHeight() const { return m_Height; }
inline int GetID() const { return m_RendererID; }
};

Texture::Texture(const std::string &path)
: m_RendererID(0), m_FilePath(path), m_LocalBuffer(nullptr), m_Width(0), m_Height(0), m_BPP(0)
{
stbi_set_flip_vertically_on_load(1); //Flip vertically because OpenGL renders texture in the opposite way
m_LocalBuffer = stbi_load(path.c_str(), &m_Width, &m_Height, &m_BPP, 4);

GLCall(glGenTextures(1, &m_RendererID));
GLCall(glBindTexture(GL_TEXTURE_2D, m_RendererID));

GLCall(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR));
GLCall(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR));
GLCall(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE));
GLCall(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP));

GLCall(glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, m_Width, m_Height, 0, GL_RGBA, GL_UNSIGNED_BYTE, m_LocalBuffer));
GLCall(glBindTexture(GL_TEXTURE_2D, 0));

if (m_LocalBuffer) {
stbi_image_free(m_LocalBuffer);
}
}

Texture::~Texture() {
GLCall(glDeleteTextures(1, &m_RendererID));
}

void Texture::Bind(unsigned int slot) const {
GLCall(glActiveTexture(GL_TEXTURE0 + slot));
GLCall(glBindTexture(GL_TEXTURE_2D, m_RendererID));
}

void Texture::Unbind() const {
GLCall(glBindTexture(GL_TEXTURE_2D, 0));
}

如果我创建一个纹理,纹理会显示:

Texture texture("ship.png");
texture.Bind(0);
shader.Bind();
va.Bind();
ib.Bind();
shader.SetUniform1i("u_Texture", 0);
glDrawElements(GL_TRIANGLES, ib.GetCount(), GL_UNSIGNED_INT, nullptr);

但如果我创建两个纹理,我只会得到黑屏:

Texture texture("ship.png");
texture.Bind(0);
Texture texture2("ship2.png");
texture2.Bind(1);
shader.Bind();
va.Bind();
ib.Bind();
shader.SetUniform1i("u_Texture", 0);
glDrawElements(GL_TRIANGLES, ib.GetCount(), GL_UNSIGNED_INT, nullptr);

这应该有效。我在互联网上搜索了 2 个小时,但我似乎无法找到这行不通的原因。你们能帮帮我吗?

最佳答案

在下面几行代码的末尾

 Texture texture("ship.png");
texture.Bind(0);
Texture texture2("ship2.png");
texture2.Bind(1);

第二个纹理对象(“ship2.png”)绑定(bind)到纹理单元 1,但绑定(bind)到纹理单元 0 的是默认纹理对象 (0)。

请注意,当 Texture texture("ship.png"); 被调用时,纹理对象被创建并绑定(bind)到当前纹理单元,之后默认纹理对象 (0) 被绑定(bind)到当前纹理单元:

 Texture::Texture(const std::string &path) {

GLCall(glBindTexture(GL_TEXTURE_2D, m_RendererID));

// [...]

GLCall(glBindTexture(GL_TEXTURE_2D, 0));
}

请注意,您所说的“解除绑定(bind)”,并没有解除任何绑定(bind)。 glBindTexture(GL_TEXTURE_2D, 0) 将默认纹理对象 (0) 绑定(bind)到当前事件的纹理单元。没有必要这样做。


只需更改说明的顺序即可解决您的问题。首先创建并加载纹理对象。然后将纹理对象绑定(bind)到纹理单元:

Texture texture("ship.png");
Texture texture2("ship2.png");

texture.Bind(0);
texture2.Bind(1);

shader.Bind();
va.Bind();
ib.Bind();
shader.SetUniform1i("u_Texture", 0);
glDrawElements(GL_TRIANGLES, ib.GetCount(), GL_UNSIGNED_INT, nullptr);

作为替代方案,您可以避免使用纹理单元 0。使用纹理单元 0 仅用于创建纹理对象:

Texture::Texture(const std::string &path, unsigned int slot) {

GLCall(glActiveTexture(GL_TEXTURE0));

// [...]
}
Texture texture("ship.png");
texture.Bind(1); // <--- 1
Texture texture2("ship2.png");
texture2.Bind(2); // <--- 2
shader.Bind();
va.Bind();
ib.Bind();
shader.SetUniform1i("u_Texture", 1); // <--- 1
glDrawElements(GL_TRIANGLES, ib.GetCount(), GL_UNSIGNED_INT, nullptr);

或者在类Texture的构造函数中添加一个纹理单元的参数:

Texture::Texture(const std::string &path, unsigned int slot) {

GLCall(glGenTextures(1, &m_RendererID));

GLCall(glActiveTexture(GL_TEXTURE0 + slot));
GLCall(glBindTexture(GL_TEXTURE_2D, m_RendererID));

// [...]

// GLCall(glBindTexture(GL_TEXTURE_2D, 0)); <--- delete
}
Texture texture("ship.png", 0);
Texture texture2("ship2.png", 1);

关于c++ - 如果现代 opengl 中有多个纹理,则没有纹理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54963309/

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