summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-10-13 14:39:11 +0200
committerStanislaw Halik <sthalik@misaki.pl>2022-10-13 14:39:11 +0200
commitbecc83c22e46fdbf5e264e7a5030f7c468af2bba (patch)
tree05555a9161bdb76fd36e67c9bd51fc556b9e2a16
parentcb48724e0c5c599338da8b1d48d9c758eedd49fd (diff)
a
-rw-r--r--src/tile-atlas.cpp2
1 files changed, 1 insertions, 1 deletions
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())