diff options
| author | Patric Dexheimer <patric.dexheimer@gmail.com> | 2022-03-01 16:55:34 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-01 16:55:34 -0300 |
| commit | 524d23d45dc38b60e9a99c745fb4a6164c776138 (patch) | |
| tree | 6a0fba87e4f0f447692cf74b9024c7301ece08ce | |
| parent | e9ee6f529165aa4883708cf94e4b10f538553ea5 (diff) | |
Update raylib.odin
| -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 5e1b22b3d..93cdf3f04 100644 --- a/vendor/raylib/raylib.odin +++ b/vendor/raylib/raylib.odin @@ -1152,7 +1152,7 @@ foreign lib { DrawRectangleLines :: proc(posX, posY, 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: c.int, color: Color) --- // Draw rectangle with rounded edges outline + DrawRectangleRoundedLines :: 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!) DrawTriangleFan :: proc(points: [^]Vector2, pointsCount: c.int, color: Color) --- // Draw a triangle fan defined by points (first vertex is the center) |