From ea7d0229fb07aabf919e1e686b6b0386f066c609 Mon Sep 17 00:00:00 2001 From: Luca Giuliano Conte Date: Mon, 15 Apr 2024 10:57:38 +0200 Subject: [PATCH] tweak background color --- u04-cube/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/u04-cube/main.c b/u04-cube/main.c index cdbfcee..5d1ddc2 100644 --- a/u04-cube/main.c +++ b/u04-cube/main.c @@ -292,7 +292,7 @@ void init(void) { glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(indices), indices, GL_STATIC_DRAW); - glClearColor(0.01f, 0.01f, 0.01f, 1.0f); + glClearColor(0.1f, 0.1f, 0.1f, 1.0f); } void draw(void) {