Update raylib_api.* by CI

This commit is contained in:
github-actions[bot]
2025-10-01 09:43:50 +00:00
parent f680776941
commit 6f1077737e
4 changed files with 431 additions and 376 deletions

View File

@@ -5508,6 +5508,33 @@
}
]
},
{
"name": "DrawLineDashed",
"description": "Draw a dashed line",
"returnType": "void",
"params": [
{
"type": "Vector2",
"name": "startPos"
},
{
"type": "Vector2",
"name": "endPos"
},
{
"type": "int",
"name": "dashSize"
},
{
"type": "int",
"name": "whiteSpaceSize"
},
{
"type": "Color",
"name": "color"
}
]
},
{
"name": "DrawLineV",
"description": "Draw a line (using gl lines)",

View File

@@ -4758,6 +4758,18 @@ return {
{type = "Color", name = "color"}
}
},
{
name = "DrawLineDashed",
description = "Draw a dashed line",
returnType = "void",
params = {
{type = "Vector2", name = "startPos"},
{type = "Vector2", name = "endPos"},
{type = "int", name = "dashSize"},
{type = "int", name = "whiteSpaceSize"},
{type = "Color", name = "color"}
}
},
{
name = "DrawLineV",
description = "Draw a line (using gl lines)",

File diff suppressed because it is too large Load Diff

View File

@@ -679,7 +679,7 @@
<Param type="unsigned int" name="frames" desc="" />
</Callback>
</Callbacks>
<Functions count="595">
<Functions count="596">
<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="" />
@@ -1359,6 +1359,13 @@
<Param type="int" name="endPosY" desc="" />
<Param type="Color" name="color" desc="" />
</Function>
<Function name="DrawLineDashed" retType="void" paramCount="5" desc="Draw a dashed line">
<Param type="Vector2" name="startPos" desc="" />
<Param type="Vector2" name="endPos" desc="" />
<Param type="int" name="dashSize" desc="" />
<Param type="int" name="whiteSpaceSize" desc="" />
<Param type="Color" name="color" desc="" />
</Function>
<Function name="DrawLineV" retType="void" paramCount="3" desc="Draw a line (using gl lines)">
<Param type="Vector2" name="startPos" desc="" />
<Param type="Vector2" name="endPos" desc="" />