I'm rendering a bunch of textured quads. As always in android the textures use pre-multiplied alpha and I'm using gl.glBlendFunc(GL10.GL_ONE, GL10.GL_ONE_MINUS_SRC_ALPHA) for blending. This almost always works fine.
Now when I'm enabling glFog, the blending starts to look weird. If the quad is rendered within the fog range, the alpha doesn't work. It looks like the alpha is replaced with fog color, the more the deeper in the fog it is, which I guess is in order. But then it looks like the the quad is additively blended with everything beneath.
If I change to gl.glBlendFunc(GL10.GL_SRC_ALPHA, GL10.GL_ONE_MINUS_SRC_ALPHA) all parts that are transparent are rendered correctly, but I get the usual problems with pre-multiplied textures: Semi-transparent parts are rendered too dark.
How can I use glFog and render premultiplied textures with different alpha correctly in OpenGL ES 1.1 on Android?