From f1bcc131dcc751b53b09107b4660931943a44d0f Mon Sep 17 00:00:00 2001 From: Ray Date: Tue, 15 Jan 2019 12:08:11 +0100 Subject: [PATCH] Let user choose to clear scissor area --- src/rlgl.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/rlgl.h b/src/rlgl.h index 145c708dc..d2ee776b9 100644 --- a/src/rlgl.h +++ b/src/rlgl.h @@ -3329,8 +3329,6 @@ void BeginScissorMode(int x, int y, int width, int height) glEnable(GL_SCISSOR_TEST); glScissor(x, screenHeight - (y + height), width, height); - - rlClearScreenBuffers(); // Clear current scissor area } // End scissor mode