abc
abc

Reputation:

How do I generate mipmap images in OpenGL ES?

What is the equivalent function of gluBuild2DMipmaps() in OpenGL ES on an iPhone?

Upvotes: 7

Views: 2431

Answers (1)

mswar
mswar

Reputation:

glGenerateMipmapOES(GL_TEXTURE_2D);

document http://www.khronos.org/opengles/sdk/docs/man/glGenerateMipmap.xml

Upvotes: 9

Related Questions