Support the glGenerateMipmap() function in OpenGl ES 2.0

Viewed 280

In the Khronos documentation support for the glGenerateMipmap(GLenum target) function starts with OpenGL 3.0. Why then does this function also exist in the GLES20 class?:

GLES20.glGenerateMipmap(GLES20.GL_TEXTURE_2D);

Or does OpenGL ES 2.0 also support the automatic generation of mipmaps?

1 Answers
Related