OpenGL ES 1.x根据主内存中的位图混合两个纹理

时间:2011-01-26 16:06:26

标签: opengl-es textures blend

我有两个纹理(1024x1024,完全MipMapped,PVRTC-4bitsPerPixel都被压缩)。纹理应用于3D网格。

在CPU上我正在更新512x512布尔数组。

现在我想将纹理2与纹理1相对于此布尔数组进行混合(true表示texture1的相应4个像素是可见的,false表示其他纹理在此位置可见)

我的硬件有两个可用的纹理单元。

我该怎么做?

1 个答案:

答案 0 :(得分:0)

您可以使用特定的着色器。如果你有tex1,tex2和texbool:

# set your textures
glActiveTexture(GL_TEXTURE0)
glBindTexture(GL_TEXTURE_2D, tex1)
glActiveTexture(GL_TEXTURE0+1)
glBindTexture(GL_TEXTURE_2D, tex2)
glActiveTexture(GL_TEXTURE0+2)
glBindTexture(GL_TEXTURE_2D, texbool)

# when you're starting your shader (id is 1 for eg)
glUseProgram(1)
glUniformi(glGetUniformLocation(1, "tex1"), 0)
glUniformi(glGetUniformLocation(1, "tex2"), 1)
glUniformi(glGetUniformLocation(1, "texbool"), 2)

# and now, draw your model as you wish

片段着色器可以是:

// i assume that you'll pass tex coords too. Since the tex1 and tex2
// look the same size, i'll assume that for now.
varying vec2 tex1_coords;

// get the binded texture
uniform sample2D tex1;
uniform sample2D tex2;
uniform sample2D texbool;

// draw !
void main(void) {
  vec4 c1 = texture2D(tex1, tex1_coords);
  vec4 c2 = texture2D(tex2, tex1_coords);
  vec4 cbool = texture2D(texbool, tex1_coords / 2.);
  // this will mix c1 to c2, according to cbool.
  // if cbool is 0, c1 will be used, otherwise, it will be c2
  glFragColor = mix(c1, c2, cbool);
}

我没有测试你的例子,但是我将如何开始找到解决方案:)