I'm using three textures in my WebGL program, and I get a striped/overlapping effect.
The first texture I bind is OK, but sequential textures get the effect.
Here's my vertex data format (x,y,z,s,t,textureIndex,textureName)
-5.0 0.0 -5.0 0.0 0.0 1 WL01
-5.0 0.0 5.0 0.0 1.0 1 WL01
5.0 0.0 5.0 1.0 1.0 1 WL01
-5.0 0.0 -5.0 0.0 0.0 1 WL01
5.0 0.0 -5.0 1.0 0.0 1 WL01
5.0 0.0 5.0 1.0 1.0 1 WL01
-1.0 1.0 -4.0 0.0 1.0 2 WL02
-1.0 0.0 -4.0 0.0 0.0 2 WL02
-0.0 0.0 -4.0 1.0 0.0 2 WL02
-1.0 1.0 -4.0 0.0 1.0 2 WL02
-0.0 1.0 -4.0 1.0 1.0 2 WL02
-0.0 0.0 -4.0 1.0 0.0 2 WL02
2.0 1.0 -4.0 1.0 1.0 0 WL00
2.0 0.0 -4.0 1.0 0.0 0 WL00
0.5 0.0 -4.0 0.0 0.0 0 WL00
2.0 1.0 -4.0 1.0 1.0 0 WL00
0.5 1.0 -4.0 0.0 1.0 0 WL00
0.5 0.0 -4.0 0.0 0.0 0 WL00
Here's how I initialize each texture individually:
gl.bindTexture(gl.TEXTURE_2D, texture);
gl.pixelStorei(gl.UNPACK_FLIP_Y_WEBGL, true);
gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, gl.RGBA, gl.UNSIGNED_BYTE, texture.image);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.NEAREST);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.NEAREST);
gl.bindTexture(gl.TEXTURE_2D, null);
Buffer initialization:
levelVertexBuffer = gl.createBuffer();
gl.bindBuffer(gl.ARRAY_BUFFER, levelVertexBuffer);
gl.bufferData(gl.ARRAY_BUFFER, new Float32Array(data), gl.STATIC_DRAW);
levelVertexBuffer.vertexCount = 18;
textureIndexBuffer = gl.createBuffer();
gl.bindBuffer(gl.ARRAY_BUFFER, textureIndexBuffer);
gl.bufferData(gl.ARRAY_BUFFER, new Uint8Array(texIndexBuffData), gl.STATIC_DRAW);
In main loop I'm doing:
...
for( var i = 0; i < level.textures.length; i++ ) {
gl.activeTexture(gl.TEXTURE0 + i);
gl.bindTexture(gl.TEXTURE_2D, level.textures[i]);
}
...
gl.uniform1i(shaderProgram.texturesUniform0, 0);
gl.uniform1i(shaderProgram.texturesUniform1, 1);
gl.uniform1i(shaderProgram.texturesUniform2, 2);
Vertex shader:
<script id="shader-vs" type="x-shader/x-vertex">
attribute vec3 aVertexPosition;
attribute vec2 aTextureCoord;
attribute float aTextureIndex;
uniform mat4 uMVMatrix;
uniform mat4 uPMatrix;
varying vec2 vTextureCoord;
varying float vTextureIndex;
void main(void) {
gl_Position = uPMatrix * uMVMatrix * vec4(aVertexPosition, 1.0);
vTextureCoord = aTextureCoord;
vTextureIndex = aTextureIndex;
}
</script>
Fragment shader:
<script id="shader-fs" type="x-shader/x-fragment">
precision mediump float;
varying float vTextureIndex;
varying vec2 vTextureCoord;
uniform sampler2D u_texture0;
uniform sampler2D u_texture1;
uniform sampler2D u_texture2;
vec4 getSampleFromArray(int index, vec2 uv) {
vec4 color;
if (index == 0) {
color = texture2D(u_texture0, uv);
} else if ( index == 1 ) {
color = texture2D(u_texture1, uv);
} else if ( index == 2 ) {
color = texture2D(u_texture2, uv);
}
return color;
}
void main() {
gl_FragColor = getSampleFromArray(int(vTextureIndex), vec2(vTextureCoord.s, vTextureCoord.t));
}
</script>
The possibility I see is poor interpolation of your varying
vTextureIndex
. Try rounding it to nearest rather than down:int(vTextureIndex + 0.5)
.Yes, you would think this wouldn't be necessary, but GPUs use rough good-enough approximations all over the place where they're allowed to.