Difference between revisions of "BilinearFiltering"
From polycount
Cheeseplus (Talk | contribs) m (1 revision) |
EricChadwick (Talk | contribs) |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
− | + | Bilinear filtering is a method of texture filtering, often used for [[MIPMapping|MIP mapping]]. | |
− | + | ||
− | + | Since the [[Texel|texels]] are almost always larger or smaller than the screen [[Pixel|pixels]], it tries to find a MIP-map with texels that are closest in size to the screen pixels. Then it [[Interpolation|interpolates]] the four texels that are the nearest to each screen pixel in order to render each new screen pixel. | |
− | + | See also [[TrilinearFiltering|trilinear filtering]]. | |
---- | ---- | ||
[[Category:Glossary]] | [[Category:Glossary]] |
Latest revision as of 19:24, 14 February 2015
Bilinear filtering is a method of texture filtering, often used for MIP mapping.
Since the texels are almost always larger or smaller than the screen pixels, it tries to find a MIP-map with texels that are closest in size to the screen pixels. Then it interpolates the four texels that are the nearest to each screen pixel in order to render each new screen pixel.
See also trilinear filtering.