Hi,
Does anyone know how to generate mipmaps in Android 1.5? This one doesn't support OpenGL ES 1.1, which has gluGenerateMipmap().
So I thought of using GLUtils.texImage2D(GL10.GL_TEXTURE_2D, n, texture[n], 0); with n from 0 to let's say 2, and the texture size decreasing by half. However, when I bind to that texture, everything is white. If I only put the first texture (i.e. n = 0), it shows the texture, but no mipmap.
How should I implement mipmaps in OpenGL ES 1.0?
Thanks in advance,
Cosmin
P.S. I'm only starting in OpenGL on Android, so the information may be inaccurate.

