rlparser: update raylib_api.* by CI

This commit is contained in:
github-actions[bot]
2026-06-07 19:51:18 +00:00
parent d9335f6a95
commit 26d82cf55d
4 changed files with 293 additions and 238 deletions
+27
View File
@@ -8636,6 +8636,33 @@
}
]
},
{
"name": "ImageDrawCircleGradient",
"description": "Draw a gradient-filled circle within an image",
"returnType": "void",
"params": [
{
"type": "Image *",
"name": "dst"
},
{
"type": "Vector2",
"name": "center"
},
{
"type": "float",
"name": "radius"
},
{
"type": "Color",
"name": "inner"
},
{
"type": "Color",
"name": "outer"
}
]
},
{
"name": "ImageDrawText",
"description": "Draw text (using default font) within an image (destination)",
+12
View File
@@ -6314,6 +6314,18 @@ return {
{type = "Color", name = "tint"}
}
},
{
name = "ImageDrawCircleGradient",
description = "Draw a gradient-filled circle within an image",
returnType = "void",
params = {
{type = "Image *", name = "dst"},
{type = "Vector2", name = "center"},
{type = "float", name = "radius"},
{type = "Color", name = "inner"},
{type = "Color", name = "outer"}
}
},
{
name = "ImageDrawText",
description = "Draw text (using default font) within an image (destination)",
File diff suppressed because it is too large Load Diff
+8 -1
View File
@@ -681,7 +681,7 @@
<Param type="unsigned int" name="frames" desc="" />
</Callback>
</Callbacks>
<Functions count="604">
<Functions count="605">
<Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context">
<Param type="int" name="width" desc="" />
<Param type="int" name="height" desc="" />
@@ -2179,6 +2179,13 @@
<Param type="Rectangle" name="dstRec" desc="" />
<Param type="Color" name="tint" desc="" />
</Function>
<Function name="ImageDrawCircleGradient" retType="void" paramCount="5" desc="Draw a gradient-filled circle within an image">
<Param type="Image *" name="dst" desc="" />
<Param type="Vector2" name="center" desc="" />
<Param type="float" name="radius" desc="" />
<Param type="Color" name="inner" desc="" />
<Param type="Color" name="outer" desc="" />
</Function>
<Function name="ImageDrawText" retType="void" paramCount="6" desc="Draw text (using default font) within an image (destination)">
<Param type="Image *" name="dst" desc="" />
<Param type="const char *" name="text" desc="" />