Peter Lapisu
Peter Lapisu

Reputation: 21005

Disable MipMapping

how do i disable mipmaping in OpenGL ES (iPhone)?

it should be smth. with glTexParameteri

Upvotes: 0

Views: 873

Answers (1)

datenwolf
datenwolf

Reputation: 162317

glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);

Upvotes: 2

Related Questions