From a8f761d39c56606bac22524c9e1e501952f9642b Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Tue, 20 Dec 2016 13:42:35 +0200 Subject: [PATCH] changed the clear color to white, to show up through the window --- src/app.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.cc b/src/app.cc index 49f8469..ff95ee1 100644 --- a/src/app.cc +++ b/src/app.cc @@ -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")) { -- 1.7.10.4