Update raylib_api.* by CI

This commit is contained in:
github-actions[bot]
2025-10-02 11:38:31 +00:00
parent 7e3b7cd349
commit 2ea18f7c88
4 changed files with 59 additions and 59 deletions

View File

@@ -5508,33 +5508,6 @@
} }
] ]
}, },
{
"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", "name": "DrawLineV",
"description": "Draw a line (using gl lines)", "description": "Draw a line (using gl lines)",
@@ -5619,6 +5592,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": "spaceSize"
},
{
"type": "Color",
"name": "color"
}
]
},
{ {
"name": "DrawCircle", "name": "DrawCircle",
"description": "Draw a color-filled circle", "description": "Draw a color-filled circle",

View File

@@ -4758,18 +4758,6 @@ return {
{type = "Color", name = "color"} {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", name = "DrawLineV",
description = "Draw a line (using gl lines)", description = "Draw a line (using gl lines)",
@@ -4812,6 +4800,18 @@ return {
{type = "Color", name = "color"} {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 = "spaceSize"},
{type = "Color", name = "color"}
}
},
{ {
name = "DrawCircle", name = "DrawCircle",
description = "Draw a color-filled circle", description = "Draw a color-filled circle",

View File

@@ -2190,23 +2190,14 @@ Function 221: DrawLine() (5 input parameters)
Param[3]: endPosX (type: int) Param[3]: endPosX (type: int)
Param[4]: endPosY (type: int) Param[4]: endPosY (type: int)
Param[5]: color (type: Color) Param[5]: color (type: Color)
Function 222: DrawLineDashed() (5 input parameters) Function 222: DrawLineV() (3 input parameters)
Name: DrawLineDashed
Return type: void
Description: Draw a dashed line
Param[1]: startPos (type: Vector2)
Param[2]: endPos (type: Vector2)
Param[3]: dashSize (type: int)
Param[4]: whiteSpaceSize (type: int)
Param[5]: color (type: Color)
Function 223: DrawLineV() (3 input parameters)
Name: DrawLineV Name: DrawLineV
Return type: void Return type: void
Description: Draw a line (using gl lines) Description: Draw a line (using gl lines)
Param[1]: startPos (type: Vector2) Param[1]: startPos (type: Vector2)
Param[2]: endPos (type: Vector2) Param[2]: endPos (type: Vector2)
Param[3]: color (type: Color) Param[3]: color (type: Color)
Function 224: DrawLineEx() (4 input parameters) Function 223: DrawLineEx() (4 input parameters)
Name: DrawLineEx Name: DrawLineEx
Return type: void Return type: void
Description: Draw a line (using triangles/quads) Description: Draw a line (using triangles/quads)
@@ -2214,14 +2205,14 @@ Function 224: DrawLineEx() (4 input parameters)
Param[2]: endPos (type: Vector2) Param[2]: endPos (type: Vector2)
Param[3]: thick (type: float) Param[3]: thick (type: float)
Param[4]: color (type: Color) Param[4]: color (type: Color)
Function 225: DrawLineStrip() (3 input parameters) Function 224: DrawLineStrip() (3 input parameters)
Name: DrawLineStrip Name: DrawLineStrip
Return type: void Return type: void
Description: Draw lines sequence (using gl lines) Description: Draw lines sequence (using gl lines)
Param[1]: points (type: const Vector2 *) Param[1]: points (type: const Vector2 *)
Param[2]: pointCount (type: int) Param[2]: pointCount (type: int)
Param[3]: color (type: Color) Param[3]: color (type: Color)
Function 226: DrawLineBezier() (4 input parameters) Function 225: DrawLineBezier() (4 input parameters)
Name: DrawLineBezier Name: DrawLineBezier
Return type: void Return type: void
Description: Draw line segment cubic-bezier in-out interpolation Description: Draw line segment cubic-bezier in-out interpolation
@@ -2229,6 +2220,15 @@ Function 226: DrawLineBezier() (4 input parameters)
Param[2]: endPos (type: Vector2) Param[2]: endPos (type: Vector2)
Param[3]: thick (type: float) Param[3]: thick (type: float)
Param[4]: color (type: Color) Param[4]: color (type: Color)
Function 226: DrawLineDashed() (5 input parameters)
Name: DrawLineDashed
Return type: void
Description: Draw a dashed line
Param[1]: startPos (type: Vector2)
Param[2]: endPos (type: Vector2)
Param[3]: dashSize (type: int)
Param[4]: spaceSize (type: int)
Param[5]: color (type: Color)
Function 227: DrawCircle() (4 input parameters) Function 227: DrawCircle() (4 input parameters)
Name: DrawCircle Name: DrawCircle
Return type: void Return type: void

View File

@@ -1359,13 +1359,6 @@
<Param type="int" name="endPosY" desc="" /> <Param type="int" name="endPosY" desc="" />
<Param type="Color" name="color" desc="" /> <Param type="Color" name="color" desc="" />
</Function> </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)"> <Function name="DrawLineV" retType="void" paramCount="3" desc="Draw a line (using gl lines)">
<Param type="Vector2" name="startPos" desc="" /> <Param type="Vector2" name="startPos" desc="" />
<Param type="Vector2" name="endPos" desc="" /> <Param type="Vector2" name="endPos" desc="" />
@@ -1388,6 +1381,13 @@
<Param type="float" name="thick" desc="" /> <Param type="float" name="thick" desc="" />
<Param type="Color" name="color" desc="" /> <Param type="Color" name="color" desc="" />
</Function> </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="spaceSize" desc="" />
<Param type="Color" name="color" desc="" />
</Function>
<Function name="DrawCircle" retType="void" paramCount="4" desc="Draw a color-filled circle"> <Function name="DrawCircle" retType="void" paramCount="4" desc="Draw a color-filled circle">
<Param type="int" name="centerX" desc="" /> <Param type="int" name="centerX" desc="" />
<Param type="int" name="centerY" desc="" /> <Param type="int" name="centerY" desc="" />