From 95461f11e9c7175a7d8a289d40b692b2219c5a95 Mon Sep 17 00:00:00 2001 From: rexim Date: Thu, 12 Sep 2019 02:28:39 +0700 Subject: [PATCH] (#12) Do not interpolate textures --- src/boomer.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/boomer.nim b/src/boomer.nim index 48939bf..60eed50 100644 --- a/src/boomer.nim +++ b/src/boomer.nim @@ -174,10 +174,10 @@ proc main() = glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, - GL_LINEAR) + GL_NEAREST) glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, - GL_LINEAR) + GL_NEAREST) glutMainLoop()