mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-12 16:15:20 +02:00
Revert "2D rendering: Enable bilinear filter for downscaling textures" (#15385)
This reverts commit minetest/irrlicht@fb7a0e4298.
This commit is contained in:
@@ -108,9 +108,7 @@ CNullDriver::CNullDriver(io::IFileSystem *io, const core::dimension2d<u32> &scre
|
|||||||
InitMaterial2D.ZBuffer = video::ECFN_DISABLED;
|
InitMaterial2D.ZBuffer = video::ECFN_DISABLED;
|
||||||
InitMaterial2D.UseMipMaps = false;
|
InitMaterial2D.UseMipMaps = false;
|
||||||
InitMaterial2D.forEachTexture([](auto &tex) {
|
InitMaterial2D.forEachTexture([](auto &tex) {
|
||||||
// Using ETMINF_LINEAR_MIPMAP_NEAREST (bilinear) for 2D graphics looks
|
tex.MinFilter = video::ETMINF_NEAREST_MIPMAP_NEAREST;
|
||||||
// much better and doesn't have any downsides (e.g. regarding pixel art).
|
|
||||||
tex.MinFilter = video::ETMINF_LINEAR_MIPMAP_NEAREST;
|
|
||||||
tex.MagFilter = video::ETMAGF_NEAREST;
|
tex.MagFilter = video::ETMAGF_NEAREST;
|
||||||
tex.TextureWrapU = video::ETC_REPEAT;
|
tex.TextureWrapU = video::ETC_REPEAT;
|
||||||
tex.TextureWrapV = video::ETC_REPEAT;
|
tex.TextureWrapV = video::ETC_REPEAT;
|
||||||
|
Reference in New Issue
Block a user