rlparser: update raylib_api.* by CI

This commit is contained in:
github-actions[bot]
2026-06-07 16:49:09 +00:00
parent 6a6daad739
commit f5ea52a2b8
4 changed files with 445 additions and 349 deletions

View File

@@ -5157,6 +5157,17 @@ return {
{type = "Color", name = "color"}
}
},
{
name = "DrawCircleLinesEx",
description = "Draw circle outline with line thickness",
returnType = "void",
params = {
{type = "Vector2", name = "center"},
{type = "float", name = "radius"},
{type = "float", name = "thick"},
{type = "Color", name = "color"}
}
},
{
name = "DrawEllipse",
description = "Draw ellipse",
@@ -6122,6 +6133,17 @@ return {
{type = "Color", name = "color"}
}
},
{
name = "ImageDrawLineStrip",
description = "Draw a lines sequence within an image",
returnType = "void",
params = {
{type = "Image *", name = "dst"},
{type = "const Vector2 *", name = "points"},
{type = "int", name = "pointCount"},
{type = "Color", name = "color"}
}
},
{
name = "ImageDrawTriangle",
description = "Draw triangle within an image",