Level Of Detail
glTexParameterf(GL_TEXTURE_ENV, GL_TEXTURE_MIN_LOD, min_lod);
glTexParameterf(GL_TEXTURE_ENV, GL_TEXTURE_MAX_LOD, max_lod);
Additionally, you can bias whatever level of detail that is implemented, which can dramatically increase or decrease the detail of mipmapped textures. This primarily acts to compensate for under or over sampling of texture images. Applying a negative bias to the default LOD will result in more detail while a positive bias will result in less detail. When the texture data supplied by a game is oversampled, an image will look blurry; a negative LOD bias will help to give more apparent detail as well as making the scene crisper. When the texture data supplied by a game is undersampled, an image may look unusually (and perhaps unrealistically) crisp; a positive LOD bias will help reduce the "overly detailed" look. The drawback to applying negative bias is the introduction of texture aliasing. One side effect to this is when very detailed textures will seem to "swim", which is anĀ artifact of aliasing.