opengl纹理

发布于 2024-11-05 20:02:17 字数 1172 浏览 0 评论 0原文

我正在尝试在 opengl 中创建一个法线贴图,我可以将其加载到着色器中并动态更改,尽管目前我陷入了如何创建纹理的困境。

我目前有这个:

glActiveTexture(GL_TEXTURE7);
glGenTextures(1, &normals);
glBindTexture(GL_TEXTURE_2D, normals);
texels = new Vector3f*[256];

for(int i = 0; i < 256; ++i){
    texels[i] = new Vector3f[256];
}
this->setup_normals();

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

glTexImage2D(GL_TEXTURE_2D, 0, 3, 256, 256, 0, GL_RGB, GL_FLOAT, texels);

...

void setup_normals(){
for(int i = 0; i < 256; ++i){
        for(int j = 0; j < 256; ++j){
            texels[i][j][0] = 0.0f;
            texels[i][j][1] = 1.0f;
            texels[i][j][2] = 0.0f;
        }
    }
}

其中 Vector3f 是: typedef float Vector3f[3];

纹素是:Vector3f** 纹素;

当我使用正交矩阵(适用于加载的纹理)将此纹理绘制到屏幕四边形时,我得到 this

我不确定为什么它看起来不是完全绿色,以及是什么导致其中出现黑色条纹。任何帮助表示赞赏。

I am trying to create a normal map in opengl that I can load into the shader and change dynamically, though currently i am stuck at how to create the texture.

I currently have this:

glActiveTexture(GL_TEXTURE7);
glGenTextures(1, &normals);
glBindTexture(GL_TEXTURE_2D, normals);
texels = new Vector3f*[256];

for(int i = 0; i < 256; ++i){
    texels[i] = new Vector3f[256];
}
this->setup_normals();

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

glTexImage2D(GL_TEXTURE_2D, 0, 3, 256, 256, 0, GL_RGB, GL_FLOAT, texels);

...

void setup_normals(){
for(int i = 0; i < 256; ++i){
        for(int j = 0; j < 256; ++j){
            texels[i][j][0] = 0.0f;
            texels[i][j][1] = 1.0f;
            texels[i][j][2] = 0.0f;
        }
    }
}

where Vector3f is: typedef float Vector3f[3];

and texels is: Vector3f** texels;

When I draw this texture to a screenquad using an orthogonal matrix( which works for textures loaded in) I get this.

I am unsure why it does not appear fully green and also what is causing the black streaks to appear within it. Any help appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

┼── 2024-11-12 20:02:17

您的数组需要是连续的,因为 glTexImage2D() 不采用任何类型的步幅或行映射参数:

texels = new Vector3f[256*256];

Your array needs to be contiguous since glTexImage2D() doesn't take any sort of stride or row mapping parameters:

texels = new Vector3f[256*256];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文