diff options
| author | raysan5 <[email protected]> | 2018-12-26 10:51:13 +0100 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2018-12-26 10:51:13 +0100 |
| commit | 9a8320c52bf179633c33f16d4f0adbf57f820b1b (patch) | |
| tree | 5cffe1809d896b3f8aa5f851e61efcbc41d4fafb /src/raylib.h | |
| parent | af4a177af41064db5ebf9a28dcac9eb178cd7fa9 (diff) | |
| download | raylib-9a8320c52bf179633c33f16d4f0adbf57f820b1b.tar.gz raylib-9a8320c52bf179633c33f16d4f0adbf57f820b1b.zip | |
REVIEWED: DrawRectanglePro()
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h index d4b5bd20..baac5a8c 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -986,7 +986,7 @@ RLAPI void DrawCircleLines(int centerX, int centerY, float radius, Color color); RLAPI void DrawRectangle(int posX, int posY, int width, int height, Color color); // Draw a color-filled rectangle RLAPI void DrawRectangleV(Vector2 position, Vector2 size, Color color); // Draw a color-filled rectangle (Vector version) RLAPI void DrawRectangleRec(Rectangle rec, Color color); // Draw a color-filled rectangle -RLAPI void DrawRectanglePro(Rectangle rec, Vector2 origin, float rotation, Color colors[4]); // Draw a color-filled rectangle with pro parameters +RLAPI void DrawRectanglePro(Rectangle rec, Vector2 origin, float rotation, Color color); // Draw a color-filled rectangle with pro parameters RLAPI void DrawRectangleGradientV(int posX, int posY, int width, int height, Color color1, Color color2);// Draw a vertical-gradient-filled rectangle RLAPI void DrawRectangleGradientH(int posX, int posY, int width, int height, Color color1, Color color2);// Draw a horizontal-gradient-filled rectangle RLAPI void DrawRectangleGradientEx(Rectangle rec, Color col1, Color col2, Color col3, Color col4); // Draw a gradient-filled rectangle with custom vertex colors |
