From e06e78acfbb4aadb33ea0bd438382132fb70cc43 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Thu, 2 Aug 2018 17:20:24 +0200 Subject: [PATCH] Disable dither; we don't need it. --- flow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flow.cpp b/flow.cpp index 5747237..bb0c096 100644 --- a/flow.cpp +++ b/flow.cpp @@ -2042,6 +2042,8 @@ int main(int argc, char **argv) SDL_GLContext context = SDL_GL_CreateContext(window); assert(context != nullptr); + glDisable(GL_DITHER); + // FIXME: Should be part of DISComputeFlow (but needs to be initialized // before all the render passes). float vertices[] = { -- 2.39.2