diff options
Diffstat (limited to 'src/glwidget.cpp')
-rwxr-xr-x | src/glwidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glwidget.cpp b/src/glwidget.cpp index 7147e48..7d56389 100755 --- a/src/glwidget.cpp +++ b/src/glwidget.cpp @@ -64,7 +64,7 @@ void GLWidget::initializeGL() fprintf(stdout, "Successfully initialized GLEW %s\n", glewGetString(GLEW_VERSION)); // Set clear color to white - glClearColor(1, 1, 1, 1); + glClearColor(0, 0, 0, 1); // Enable depth-testing and backface culling glEnable(GL_DEPTH_TEST); |