Update raylib_api.* by CI
This commit is contained in:
parent
6f89aa57ab
commit
9a5c02f67d
|
|
@ -6518,6 +6518,33 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "DrawSplineSegmentLinearVar",
|
||||||
|
"description": "Draw spline segment with variable thickness: Linear Bezier, 2 points",
|
||||||
|
"returnType": "void",
|
||||||
|
"params": [
|
||||||
|
{
|
||||||
|
"type": "Vector2",
|
||||||
|
"name": "p1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Vector2",
|
||||||
|
"name": "p2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "const float*",
|
||||||
|
"name": "thicks"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "int",
|
||||||
|
"name": "thickCount"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Color",
|
||||||
|
"name": "color"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "DrawSplineSegmentBezierCubicVar",
|
"name": "DrawSplineSegmentBezierCubicVar",
|
||||||
"description": "Draw spline segment with variable thickness: Cubic Bezier, 2 points, 2 control points",
|
"description": "Draw spline segment with variable thickness: Cubic Bezier, 2 points, 2 control points",
|
||||||
|
|
|
||||||
|
|
@ -5210,6 +5210,18 @@ return {
|
||||||
{type = "Color", name = "color"}
|
{type = "Color", name = "color"}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name = "DrawSplineSegmentLinearVar",
|
||||||
|
description = "Draw spline segment with variable thickness: Linear Bezier, 2 points",
|
||||||
|
returnType = "void",
|
||||||
|
params = {
|
||||||
|
{type = "Vector2", name = "p1"},
|
||||||
|
{type = "Vector2", name = "p2"},
|
||||||
|
{type = "const float*", name = "thicks"},
|
||||||
|
{type = "int", name = "thickCount"},
|
||||||
|
{type = "Color", name = "color"}
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name = "DrawSplineSegmentBezierCubicVar",
|
name = "DrawSplineSegmentBezierCubicVar",
|
||||||
description = "Draw spline segment with variable thickness: Cubic Bezier, 2 points, 2 control points",
|
description = "Draw spline segment with variable thickness: Cubic Bezier, 2 points, 2 control points",
|
||||||
|
|
|
||||||
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="594">
|
<Functions count="595">
|
||||||
<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="" />
|
||||||
|
|
@ -1621,6 +1621,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="DrawSplineSegmentLinearVar" retType="void" paramCount="5" desc="Draw spline segment with variable thickness: Linear Bezier, 2 points">
|
||||||
|
<Param type="Vector2" name="p1" desc="" />
|
||||||
|
<Param type="Vector2" name="p2" desc="" />
|
||||||
|
<Param type="const float*" name="thicks" desc="" />
|
||||||
|
<Param type="int" name="thickCount" desc="" />
|
||||||
|
<Param type="Color" name="color" desc="" />
|
||||||
|
</Function>
|
||||||
<Function name="DrawSplineSegmentBezierCubicVar" retType="void" paramCount="7" desc="Draw spline segment with variable thickness: Cubic Bezier, 2 points, 2 control points">
|
<Function name="DrawSplineSegmentBezierCubicVar" retType="void" paramCount="7" desc="Draw spline segment with variable thickness: Cubic Bezier, 2 points, 2 control points">
|
||||||
<Param type="Vector2" name="p1" desc="" />
|
<Param type="Vector2" name="p1" desc="" />
|
||||||
<Param type="Vector2" name="c2" desc="" />
|
<Param type="Vector2" name="c2" desc="" />
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user