diff options
author | Sebastian Park <SebPark03@gmail.com> | 2024-04-25 03:39:49 -0400 |
---|---|---|
committer | Sebastian Park <SebPark03@gmail.com> | 2024-04-25 03:39:49 -0400 |
commit | 13d8a5ce616d67b01c6ed0becdde537474ba154e (patch) | |
tree | 4be53bf46e33fa742c8db93acdb35faadfabba69 /src/glwidget.cpp | |
parent | 086fffe83539595c7ddefb7bcbe6cf15b9a63666 (diff) |
Michael Normal fixes and change reflection distances.
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); |