mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-14 23:38:15 +00:00
Removed function
I decided it is redundant and could be confusing (when mixed with 3D drawing). It's not KISS.
This commit is contained in:
11
src/core.c
11
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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user