Mip-Mapping Options
MIP NEAREST
- use the closest mipmap for texel selection
MIP LINEAR
- use the closest mipmap for texel selection and do a linear filter for texel color
LINEAR MIP NEAREST
- select two closest mipmaps and do a linear blend between the two texels on each map
LINEAR MIP LINEAR
- select two closest mipmaps and then combine using a bilinear filter.