From 2e5fc3d0c276d25ed51b46e4b3d0bf60445b9cb2 Mon Sep 17 00:00:00 2001 From: Ray Date: Mon, 1 Aug 2022 10:05:40 +0200 Subject: [PATCH] Avoid cleaning the front buffer to a specific color! ISSUE: Front buffer and backbuffer have different clear colors, if no `ClearBackground()` is called by user, there is screen flickering on buffers swap. It's up to the user to call `ClearBackground()` if desired --- src/rcore.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/rcore.c b/src/rcore.c index c8c66ebf5..4eeaa5743 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -4629,8 +4629,6 @@ static bool InitGraphicsDevice(int width, int height) // NOTE: It updated CORE.Window.render.width and CORE.Window.render.height SetupViewport(CORE.Window.currentFbo.width, CORE.Window.currentFbo.height); - ClearBackground(RAYWHITE); // Default background color for raylib games :P - #if defined(PLATFORM_ANDROID) CORE.Window.ready = true; #endif