What type of Pixel Interpolation is used by OpenGL?
I would like to know what type of Pixel Interpolation is used by OpenGL. Does it use one of the Standard Pixel Interpolation techniques 开发者_StackOverflow社区like Nearest Neighbor, Bilinear or Bicubic?
If you mean the various texture filtering methods, you can set nearest neighbour, as well as bi-linear (lerp) or even tri-linear (interpolating through multiple scaled textures (mipmaps), as well as the adjacent '2D' pixels).
The filtering method can be set independently for magnification as well as minification.
You can find more info here.
精彩评论