在 openGL 中使用 2D 纹理映射 3D 对象

发布于 2024-12-10 10:01:04 字数 539 浏览 2 评论 0原文

我有一个由三角形组成的立方体,因此有 8 个顶点和相应的内切来创建三角形。我在为这个立方体创建纹理坐标时遇到问题。我尝试使用如下值:

    float amt = 1.0f;
m_texBuffer.push_back(Texel(0.0f, 0.0f));
m_texBuffer.push_back(Texel(amt, 0.0f));
m_texBuffer.push_back(Texel(amt, amt));
m_texBuffer.push_back(Texel(0.0f, amt));

m_texBuffer.push_back(Texel(0.0f, 0.0f));
m_texBuffer.push_back(Texel(amt, 0.0f));
m_texBuffer.push_back(Texel(amt, amt));
m_texBuffer.push_back(Texel(0.0f, amt));

随着 amt 值的变化,我得到了奇怪的视觉结果。我知道,由于图像可能比实际物体小,因此不存在一对一的对应关系,因此我尝试将 amt 设置为较小的值,但仍然不行。

I have a cube that is made of triangles, so 8 vertices and corresponding incides to create the triangle. Im having trouble creating the texture coordinates for this cube. I tried using values like:

    float amt = 1.0f;
m_texBuffer.push_back(Texel(0.0f, 0.0f));
m_texBuffer.push_back(Texel(amt, 0.0f));
m_texBuffer.push_back(Texel(amt, amt));
m_texBuffer.push_back(Texel(0.0f, amt));

m_texBuffer.push_back(Texel(0.0f, 0.0f));
m_texBuffer.push_back(Texel(amt, 0.0f));
m_texBuffer.push_back(Texel(amt, amt));
m_texBuffer.push_back(Texel(0.0f, amt));

I get wierd visual results with varing values of amt. I understand that since an image can be smaller than the actual object that there is not nessaseraly a one to one correspondance so I tried to make amt a small value but still no go.

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

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

发布评论

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

评论(1

祁梦 2024-12-17 10:01:04

对于常规纹理,每个坐标的采样范围为 0 到 1,与采样分辨率无关。

不幸的是,你的代码绝对不能说明问题,它可以是任何东西。我们确实需要了解更多内容,尤其是实际的 OpenGL 调用。

因评论而编辑

加载图像数据时必须告诉 OpenGL 缓冲区中数据的布局。基本信息是

(glTexImage 的参数)

  • 组件数量 组件
  • 的排列
  • 每个组件的大小

(glPixelStore 的参数)

  • 对齐(0 表示紧密包装,否则对齐到 1、2 或 4 字节)
  • 像素和行运行长度(通常是0)

请参阅 glTexImageglPixelStore并为您的图像数据适当地设置它们。

For regular textures that sampling range in each coordinate is 0 to 1, independent of the sampling resolution.

Unfortunately your code is absolutely non-telling, it could be anything. We really need to see more of it, especially the actual OpenGL calls.

EDIT due to comment

Loading image data one must tell OpenGL the layout of the data in the buffer. The essential information are

(parameters to glTexImage)

  • numer of components
  • arrangement of components
  • size of each component

(parameters to glPixelStore)

  • alignment (0 for tight packing, otherwise alignment to 1, 2 or 4 bytes)
  • pixel and row run lenghts (usually those are 0)

Please see the documentation of glTexImage and glPixelStore and set them apropriately for your image data.

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