From becc83c22e46fdbf5e264e7a5030f7c468af2bba Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Thu, 13 Oct 2022 14:39:11 +0200 Subject: a --- src/tile-atlas.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/tile-atlas.cpp b/src/tile-atlas.cpp index dfb0b83c..0f6ef7bc 100644 --- a/src/tile-atlas.cpp +++ b/src/tile-atlas.cpp @@ -15,7 +15,7 @@ tile_atlas::tile_atlas(Containers::StringView name, const ImageView2D& image, Ve CORRADE_INTERNAL_ASSERT(size_ % dims_ == Vector2ui{}); CORRADE_INTERNAL_ASSERT(dims_.product() < 256); tex_.setWrapping(GL::SamplerWrapping::ClampToEdge) - .setMagnificationFilter(GL::SamplerFilter::Nearest) + .setMagnificationFilter(GL::SamplerFilter::Linear) .setMinificationFilter(GL::SamplerFilter::Linear) .setMaxAnisotropy(1) .setStorage(GL::textureFormat(image.format()), image.size()) -- cgit v1.2.3