changed the clear color to white, to show up through the window
authorJohn Tsiombikas <nuclear@mutantstargoat.com>
Tue, 20 Dec 2016 11:42:35 +0000 (13:42 +0200)
committerJohn Tsiombikas <nuclear@mutantstargoat.com>
Tue, 20 Dec 2016 11:42:35 +0000 (13:42 +0200)
src/app.cc

index 49f8469..ff95ee1 100644 (file)
@@ -104,7 +104,7 @@ bool app_init(int argc, char **argv)
        float ambient[] = {0.0, 0.0, 0.0, 0.0};
        glLightModelfv(GL_LIGHT_MODEL_AMBIENT, ambient);
 
-       glClearColor(0.2, 0.2, 0.2, 1.0);
+       glClearColor(1, 1, 1, 1);
 
        mscn = new MetaScene;
        if(!mscn->load(opt.scenefile ? opt.scenefile : "data/museum.scene")) {