From 584e84277dac69a30cf872fc6d248bc4aa115d46 Mon Sep 17 00:00:00 2001 From: Faerbit Date: Sun, 1 Mar 2015 16:52:44 +0100 Subject: [PATCH] Enabled multisampling for the window. --- main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cc b/main.cc index b8afae6..02606c2 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, 8); // request an OpenGL debug context: glfwWindowHint( GLFW_OPENGL_DEBUG_CONTEXT, true );