resource/font: disable mipmap generation

The mipmaps were never used
This commit is contained in:
Andrei Alexeyev 2024-08-27 20:04:17 +02:00
parent be06946a31
commit 141c942432
No known key found for this signature in database
GPG key ID: 72D26128040B9690

View file

@ -417,8 +417,8 @@ static SpriteSheet *add_spritesheet(SpriteSheetAnchor *spritesheets) {
.filter.min = TEX_FILTER_LINEAR,
.wrap.s = TEX_WRAP_CLAMP,
.wrap.t = TEX_WRAP_CLAMP,
.mipmaps = TEX_MIPMAPS_MAX,
.mipmap_mode = TEX_MIPMAP_AUTO,
.mipmaps = 1,
.mipmap_mode = TEX_MIPMAP_MANUAL,
})
});