summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRay <[email protected]>2019-01-15 12:08:11 +0100
committerRay <[email protected]>2019-01-15 12:08:11 +0100
commitf1bcc131dcc751b53b09107b4660931943a44d0f (patch)
treeba4eef44f3ad2797d22721b391179fe063760bb5
parent60967d8cdc1771687cec0b82be95c6fb3d5081d2 (diff)
downloadraylib-f1bcc131dcc751b53b09107b4660931943a44d0f.tar.gz
raylib-f1bcc131dcc751b53b09107b4660931943a44d0f.zip
Let user choose to clear scissor area
-rw-r--r--src/rlgl.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/rlgl.h b/src/rlgl.h
index 145c708d..d2ee776b 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