mirror of
https://github.com/raysan5/raylib.git
synced 2025-10-07 10:26:28 +00:00
Update raylib_api.* by CI
This commit is contained in:
@@ -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",
|
"name": "DrawLineV",
|
||||||
"description": "Draw a line (using gl lines)",
|
"description": "Draw a line (using gl lines)",
|
||||||
|
@@ -4758,6 +4758,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 = "whiteSpaceSize"},
|
||||||
|
{type = "Color", name = "color"}
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name = "DrawLineV",
|
name = "DrawLineV",
|
||||||
description = "Draw a line (using gl lines)",
|
description = "Draw a line (using gl lines)",
|
||||||
|
File diff suppressed because it is too large
Load Diff
@@ -679,7 +679,7 @@
|
|||||||
<Param type="unsigned int" name="frames" desc="" />
|
<Param type="unsigned int" name="frames" desc="" />
|
||||||
</Callback>
|
</Callback>
|
||||||
</Callbacks>
|
</Callbacks>
|
||||||
<Functions count="595">
|
<Functions count="596">
|
||||||
<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="" />
|
||||||
@@ -1359,6 +1359,13 @@
|
|||||||
<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="" />
|
||||||
|
Reference in New Issue
Block a user