From c1e49d2b13c75da2c532079d454fad32f9ceccd4 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Fri, 8 Apr 2016 12:00:29 +0200 Subject: Removed function I decided it is redundant and could be confusing (when mixed with 3D drawing). It's not KISS. --- src/core.c | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'src/core.c') diff --git a/src/core.c b/src/core.c index ae6f4cad..e01f3969 100644 --- a/src/core.c +++ b/src/core.c @@ -568,17 +568,6 @@ void BeginDrawingEx(Camera2D camera) rlMultMatrixf(MatrixToFloat(matTransform)); } -// Setup drawing canvas with pro parameters -void BeginDrawingPro(int blendMode, Shader shader, Matrix transform) -{ - BeginDrawing(); - - SetBlendMode(blendMode); - SetCustomShader(shader); - - rlMultMatrixf(MatrixToFloat(transform)); -} - // End canvas drawing and Swap Buffers (Double Buffering) void EndDrawing(void) { -- cgit v1.2.3