summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorDemizdor <[email protected]>2019-03-30 22:18:29 +0200
committerDemizdor <[email protected]>2019-03-30 22:18:29 +0200
commita28023b58f172559228a07da29d8cac417d2e6bd (patch)
treef0a872fcdd1d71998ba22f1bf11e50d2c4d776ca /src/raylib.h
parent2217c04ecf426cc2011c864fa788354ffa1de307 (diff)
downloadraylib-a28023b58f172559228a07da29d8cac417d2e6bd.tar.gz
raylib-a28023b58f172559228a07da29d8cac417d2e6bd.zip
Added DrawRoundedRect()
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/raylib.h b/src/raylib.h
index 085f36f6..0a8351c0 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -1056,6 +1056,7 @@ RLAPI void DrawRectangleGradientH(int posX, int posY, int width, int height, Col
RLAPI void DrawRectangleGradientEx(Rectangle rec, Color col1, Color col2, Color col3, Color col4); // Draw a gradient-filled rectangle with custom vertex colors
RLAPI void DrawRectangleLines(int posX, int posY, int width, int height, Color color); // Draw rectangle outline
RLAPI void DrawRectangleLinesEx(Rectangle rec, int lineThick, Color color); // Draw rectangle outline with extended parameters
+RLAPI void DrawRoundedRect(Rectangle rec, float roundness, int segments, Color color); // Draw rectangle with rounded edges
RLAPI void DrawTriangle(Vector2 v1, Vector2 v2, Vector2 v3, Color color); // Draw a color-filled triangle
RLAPI void DrawTriangleLines(Vector2 v1, Vector2 v2, Vector2 v3, Color color); // Draw triangle outline
RLAPI void DrawPoly(Vector2 center, int sides, float radius, float rotation, Color color); // Draw a regular polygon (Vector version)