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
+46
View File
@@ -6336,6 +6336,29 @@
} }
] ]
}, },
{
"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", "name": "DrawEllipse",
"description": "Draw ellipse", "description": "Draw ellipse",
@@ -8207,6 +8230,29 @@
} }
] ]
}, },
{
"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", "name": "ImageDrawTriangle",
"description": "Draw triangle within an image", "description": "Draw triangle within an image",
+22
View File
@@ -5157,6 +5157,17 @@ return {
{type = "Color", name = "color"} {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", name = "DrawEllipse",
description = "Draw ellipse", description = "Draw ellipse",
@@ -6122,6 +6133,17 @@ return {
{type = "Color", name = "color"} {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", name = "ImageDrawTriangle",
description = "Draw triangle within an image", description = "Draw triangle within an image",
File diff suppressed because it is too large Load Diff
+13 -1
View File
@@ -682,7 +682,7 @@
<Param type="unsigned int" name="frames" desc="" /> <Param type="unsigned int" name="frames" desc="" />
</Callback> </Callback>
</Callbacks> </Callbacks>
<Functions count="603"> <Functions count="605">
<Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context"> <Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context">
<Param type="int" name="width" desc="" /> <Param type="int" name="width" desc="" />
<Param type="int" name="height" desc="" /> <Param type="int" name="height" desc="" />
@@ -1575,6 +1575,12 @@
<Param type="float" name="radius" desc="" /> <Param type="float" name="radius" desc="" />
<Param type="Color" name="color" desc="" /> <Param type="Color" name="color" desc="" />
</Function> </Function>
<Function name="DrawCircleLinesEx" retType="void" paramCount="4" desc="Draw circle outline with line thickness">
<Param type="Vector2" name="center" desc="" />
<Param type="float" name="radius" desc="" />
<Param type="float" name="thick" desc="" />
<Param type="Color" name="color" desc="" />
</Function>
<Function name="DrawEllipse" retType="void" paramCount="5" desc="Draw ellipse"> <Function name="DrawEllipse" retType="void" paramCount="5" desc="Draw ellipse">
<Param type="int" name="centerX" desc="" /> <Param type="int" name="centerX" desc="" />
<Param type="int" name="centerY" desc="" /> <Param type="int" name="centerY" desc="" />
@@ -2067,6 +2073,12 @@
<Param type="int" name="thick" desc="" /> <Param type="int" name="thick" desc="" />
<Param type="Color" name="color" desc="" /> <Param type="Color" name="color" desc="" />
</Function> </Function>
<Function name="ImageDrawLineStrip" retType="void" paramCount="4" desc="Draw a lines sequence within an image">
<Param type="Image *" name="dst" desc="" />
<Param type="const Vector2 *" name="points" desc="" />
<Param type="int" name="pointCount" desc="" />
<Param type="Color" name="color" desc="" />
</Function>
<Function name="ImageDrawTriangle" retType="void" paramCount="5" desc="Draw triangle within an image"> <Function name="ImageDrawTriangle" retType="void" paramCount="5" desc="Draw triangle within an image">
<Param type="Image *" name="dst" desc="" /> <Param type="Image *" name="dst" desc="" />
<Param type="Vector2" name="v1" desc="" /> <Param type="Vector2" name="v1" desc="" />