This commit is contained in:
Miloslav Ciz 2024-06-22 17:19:02 +02:00
parent 05fea8ed71
commit a6db005012
12 changed files with 1814 additions and 1789 deletions

View file

@ -38,4 +38,8 @@ The above issue is addressed mainly by two methods.
The first is [trilinear filtering](trilinear_filtering.md) which uses several levels of the mipmap at once and [linearly blends](linear_interpolation.md) between them. This is alright but still shows some [artifacts](artifact.md) such as visible changes in blurriness.
The second method is [anisotropic filtering](anisotropic.md) which uses different, *anisotropic* mipmaps. Such mipmaps store more version of the image, resized in many different ways. This method is nowadays used in quality graphics.
The second method is [anisotropic filtering](anisotropic.md) which uses different, *anisotropic* mipmaps. Such mipmaps store more version of the image, resized in many different ways. This method is nowadays used in quality graphics.
## See Also
- [megatexture](megatexture.md)