Texture filters

What kind of texture filters are there and how to use/implement them?

Hi,

There are, linear filtering, mipmapping, antialiasing, …
See the Red Book for OpenGL

the red book : http://heron.cc.ukans.edu/ebt-bin/nph-dweb/dynaweb/SGI_Developer/OpenGL_PG/@Generic__BookView

to set the filter (min and mag are the 2 way to filter)
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);

the filters available :
GL_TEXTURE_MAG_FILTER :
GL_NEAREST
GL_LINEAR
GL_TEXTURE_MIN_FILTER :
GL_NEAREST,
GL_LINEAR,
GL_NEAREST_MIPMAP_NEAREST,
GL_NEAREST_MIPMAP_LINEAR,
GL_LINEAR_MIPMAP_NEAREST,
GL_LINEAR_MIPMAP_LINEAR