我正在尝试使用着色器来加载地形上的四个纹理细节图块,方法是根据第五个图像合并它们,其中 r、g、b 和 a 组件用于确定每个纹理的多少应该混合在一起。混合效果很好,但是当我尝试添加我的“mixmap”图像时,它失败了,因为我猜是纹理坐标的问题。
首先,这里是着色器:
顶点着色器
void main() {
gl_TexCoord[0] = gl_MultiTexCoord0;
gl_Position = ftransform();
}
片段着色器
uniform sampler2D Texture0;
uniform sampler2D Texture1;
uniform sampler2D Texture2;
uniform sampler2D Texture3;
uniform sampler2D Mixmap;
varying vec3 pos;
void main()
{
vec4 texel0 = texture2D(Texture0, gl_TexCoord[0].st).rgba;
vec4 texel1 = texture2D(Texture1, gl_TexCoord[0].st).rgba;
vec4 texel2 = texture2D(Texture2, gl_TexCoord[0].st).rgba;
vec4 texel3 = texture2D(Texture3, gl_TexCoord[0].st).rgba;
vec4 mixmapTexel = texture2D(Mixmap, gl_TexCoord[0].st).rgba;
texel0 *= mixmapTexel.r;
texel1 = mix(texel0, texel1, mixmapTexel.g);
texel2 = mix(texel1, texel2, mixmapTexel.b);
gl_FragColor = mix(texel2, texel3, mixmapTexel.a);
}
正如我所说,混合效果很好。问题来自这样一个事实,即从我的 mixmap 读取的值不是正确的。
这是关于我在做什么的更多解释。我正在构建一个分页地形系统,从高度图加载地形。然后我想使用我的 mixmap 图像用 rgba 组件表示每个纹理应该根据高度混合多少。
r 是水
g是沙子
b是草
a是岩石
所以我需要能够从我的着色器中获取正确的像素值来正确混合我的纹理。
这是一个在 crate 和文本之间混合的示例,以便您可以清楚地看到纹理是如何应用的。
现在,如果我使用一个简单的混合图图像(半红半绿),它应该给我地形左侧的板条箱和右侧的文本,我得到
这是地形生成过程的一部分:它遍历顶点数组并创建地形三角形
void TerrainPage::generateDisplayList()
{
// create one display list
mDisplayListIndex = glGenLists(1);
// compile the display list, store a triangle in it
glNewList(mDisplayListIndex, GL_COMPILE);
glFrontFace( GL_CW ); // Vertex are added clockwise. Used to calculate normals
std::vector<Vertex>::iterator it;
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA,GL_ONE);
texShader.enable();
texShader.bindTexture(mTexture0, "Texture0", 0);
texShader.bindTexture(mTexture1, "Texture1", 1);
texShader.bindTexture(mTexture2, "Texture2", 2);
texShader.bindTexture(mTexture3, "Texture3", 3);
texShader.bindTexture(mMixmapTexture, "Mixmap", 4);
Vertex v;
int j=0;
glEnable(GL_TEXTURE_2D);
//mTexture.bind();
glBegin(GL_TRIANGLE_STRIP);
for(int i = 0; i<mVertices.size(); i++) {
if(i%(2*mWidth) == 0) glEnd(); glBegin(GL_TRIANGLE_STRIP);
v = mVertices[i];
glTexCoord2f(v.texcoords[0], v.texcoords[1]);
glVertex3f(v.position[0], v.position[1], v.position[2]);
}
glEnd();
glDisable(GL_TEXTURE_2D);
texShader.disable();
glEndList();
}
如果需要,我可以提供更多屏幕截图,以及我的一些代码。
作为所提供答案的后续,我尝试通过计算着色器中的 UV 来做到这一点。
首先,这是新的着色器
顶点着色器
varying vec4 VertexPosition;
void main() {
gl_TexCoord[0] = gl_MultiTexCoord0;
gl_Position = ftransform();
VertexPosition = gl_ModelViewMatrix * gl_Vertex;;
}
片段着色器
uniform sampler2D Texture0;
uniform sampler2D Texture1;
uniform sampler2D Texture2;
uniform sampler2D Texture3;
uniform sampler2D Mixmap;
varying vec4 VertexPosition;
float side = 500.;
void main()
{
vec4 texel0 = texture2D(Texture0, gl_TexCoord[0].st).rgba;
vec4 texel1 = texture2D(Texture1, gl_TexCoord[0].st).rgba;
vec4 texel2 = texture2D(Texture2, gl_TexCoord[0].st).rgba;
vec4 texel3 = texture2D(Texture3, gl_TexCoord[0].st).rgba;
vec4 mixmapTexel = texture2D(Mixmap, VertexPosition.xz/(2.*side)).rgba;
texel0 *= mixmapTexel.r;
texel1 = mix(texel0, texel1, mixmapTexel.g);
//texel2 = mix(texel1, texel2, mixmapTexel.b);
//vec4 tx = mix(texel2, texel3, mixmapTexel.a);
//vec4 tx = mixmapTexel; //vec4(1, 1, 1, 1.);
gl_FragColor = texel1;
//if(test > 250. )
// gl_FragColor = vec4(1.,1.,1.,1.);
}
这是结果
但是如果我移动相机:
正如你所看到的,这次箱子和文字是并排的。但看起来我正在计算屏幕坐标而不是世界坐标。我一定又对坐标系感到困惑了。我会努力找到合适的!我只是想确保我的方向是正确的。我也会寻找多纹理坐标,一旦我弄清楚它是如何工作的,它可能会更方便;)