From 6e33af8e61bfdf97a9c69f7eb4c3b5266fc2866d Mon Sep 17 00:00:00 2001 From: Faerbit Date: Sun, 1 Mar 2015 17:56:30 +0100 Subject: [PATCH] Reducing the number of sample from 8 to 4. --- main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cc b/main.cc index 02606c2..027e6be 100644 --- a/main.cc +++ b/main.cc @@ -81,7 +81,7 @@ bool createWindow() setGLFWHintsForOpenGLVersion( ACGL_OPENGL_VERSION ); // activate multisampling (second parameter is the number of samples): - glfwWindowHint( GLFW_SAMPLES, 8); + glfwWindowHint( GLFW_SAMPLES, 4); // request an OpenGL debug context: glfwWindowHint( GLFW_OPENGL_DEBUG_CONTEXT, true );