diff options
| author | LineuVale <lineuvale@protonmail.com> | 2025-01-18 18:22:16 -0300 |
|---|---|---|
| committer | LineuVale <lineuvale@protonmail.com> | 2025-01-18 18:22:16 -0300 |
| commit | 21e48889347eabde202d2ebd51e9e8effd523d7b (patch) | |
| tree | 857fb56ded4ec2db1bdc1f1a06ebe41a08749e1b /vendor/raylib | |
| parent | 47030501abbdb9b09baf34f1ea1ed15f513ccd6d (diff) | |
Fix raylib DrawRectangleRoundedLines
Diffstat (limited to 'vendor/raylib')
| -rw-r--r-- | vendor/raylib/raylib.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/raylib/raylib.odin b/vendor/raylib/raylib.odin index bb51f105f..755f3bedd 100644 --- a/vendor/raylib/raylib.odin +++ b/vendor/raylib/raylib.odin @@ -1256,7 +1256,7 @@ foreign lib { DrawRectangleLines :: proc(posX, posY: c.int, width, height: c.int, color: Color) --- // Draw rectangle outline DrawRectangleLinesEx :: proc(rec: Rectangle, lineThick: f32, color: Color) --- // Draw rectangle outline with extended parameters DrawRectangleRounded :: proc(rec: Rectangle, roundness: f32, segments: c.int, color: Color) --- // Draw rectangle with rounded edges - DrawRectangleRoundedLines :: proc(rec: Rectangle, roundness: f32, segments: c.int, lineThick: f32, color: Color) --- // Draw rectangle lines with rounded edges + DrawRectangleRoundedLines :: proc(rec: Rectangle, roundness: f32, segments: c.int, color: Color) --- // Draw rectangle lines with rounded edges DrawRectangleRoundedLinesEx :: proc(rec: Rectangle, roundness: f32, segments: c.int, lineThick: f32, color: Color) --- // Draw rectangle with rounded edges outline DrawTriangle :: proc(v1, v2, v3: Vector2, color: Color) --- // Draw a color-filled triangle (vertex in counter-clockwise order!) DrawTriangleLines :: proc(v1, v2, v3: Vector2, color: Color) --- // Draw triangle outline (vertex in counter-clockwise order!) |