mirror of
https://github.com/raysan5/raylib.git
synced 2025-10-05 09:26:26 +00:00
Update raylib_api.* by CI
This commit is contained in:
@@ -8302,7 +8302,7 @@
|
|||||||
"name": "dst"
|
"name": "dst"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "Vector2 *",
|
"type": "const Vector2 *",
|
||||||
"name": "points"
|
"name": "points"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -8325,7 +8325,7 @@
|
|||||||
"name": "dst"
|
"name": "dst"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "Vector2 *",
|
"type": "const Vector2 *",
|
||||||
"name": "points"
|
"name": "points"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@@ -6141,7 +6141,7 @@ return {
|
|||||||
returnType = "void",
|
returnType = "void",
|
||||||
params = {
|
params = {
|
||||||
{type = "Image *", name = "dst"},
|
{type = "Image *", name = "dst"},
|
||||||
{type = "Vector2 *", name = "points"},
|
{type = "const Vector2 *", name = "points"},
|
||||||
{type = "int", name = "pointCount"},
|
{type = "int", name = "pointCount"},
|
||||||
{type = "Color", name = "color"}
|
{type = "Color", name = "color"}
|
||||||
}
|
}
|
||||||
@@ -6152,7 +6152,7 @@ return {
|
|||||||
returnType = "void",
|
returnType = "void",
|
||||||
params = {
|
params = {
|
||||||
{type = "Image *", name = "dst"},
|
{type = "Image *", name = "dst"},
|
||||||
{type = "Vector2 *", name = "points"},
|
{type = "const Vector2 *", name = "points"},
|
||||||
{type = "int", name = "pointCount"},
|
{type = "int", name = "pointCount"},
|
||||||
{type = "Color", name = "color"}
|
{type = "Color", name = "color"}
|
||||||
}
|
}
|
||||||
|
@@ -3185,7 +3185,7 @@ Function 352: ImageDrawTriangleFan() (4 input parameters)
|
|||||||
Return type: void
|
Return type: void
|
||||||
Description: Draw a triangle fan defined by points within an image (first vertex is the center)
|
Description: Draw a triangle fan defined by points within an image (first vertex is the center)
|
||||||
Param[1]: dst (type: Image *)
|
Param[1]: dst (type: Image *)
|
||||||
Param[2]: points (type: Vector2 *)
|
Param[2]: points (type: const Vector2 *)
|
||||||
Param[3]: pointCount (type: int)
|
Param[3]: pointCount (type: int)
|
||||||
Param[4]: color (type: Color)
|
Param[4]: color (type: Color)
|
||||||
Function 353: ImageDrawTriangleStrip() (4 input parameters)
|
Function 353: ImageDrawTriangleStrip() (4 input parameters)
|
||||||
@@ -3193,7 +3193,7 @@ Function 353: ImageDrawTriangleStrip() (4 input parameters)
|
|||||||
Return type: void
|
Return type: void
|
||||||
Description: Draw a triangle strip defined by points within an image
|
Description: Draw a triangle strip defined by points within an image
|
||||||
Param[1]: dst (type: Image *)
|
Param[1]: dst (type: Image *)
|
||||||
Param[2]: points (type: Vector2 *)
|
Param[2]: points (type: const Vector2 *)
|
||||||
Param[3]: pointCount (type: int)
|
Param[3]: pointCount (type: int)
|
||||||
Param[4]: color (type: Color)
|
Param[4]: color (type: Color)
|
||||||
Function 354: ImageDraw() (5 input parameters)
|
Function 354: ImageDraw() (5 input parameters)
|
||||||
|
@@ -2090,13 +2090,13 @@
|
|||||||
</Function>
|
</Function>
|
||||||
<Function name="ImageDrawTriangleFan" retType="void" paramCount="4" desc="Draw a triangle fan defined by points within an image (first vertex is the center)">
|
<Function name="ImageDrawTriangleFan" retType="void" paramCount="4" desc="Draw a triangle fan defined by points within an image (first vertex is the center)">
|
||||||
<Param type="Image *" name="dst" desc="" />
|
<Param type="Image *" name="dst" desc="" />
|
||||||
<Param type="Vector2 *" name="points" desc="" />
|
<Param type="const Vector2 *" name="points" desc="" />
|
||||||
<Param type="int" name="pointCount" desc="" />
|
<Param type="int" name="pointCount" desc="" />
|
||||||
<Param type="Color" name="color" desc="" />
|
<Param type="Color" name="color" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
<Function name="ImageDrawTriangleStrip" retType="void" paramCount="4" desc="Draw a triangle strip defined by points within an image">
|
<Function name="ImageDrawTriangleStrip" retType="void" paramCount="4" desc="Draw a triangle strip defined by points within an image">
|
||||||
<Param type="Image *" name="dst" desc="" />
|
<Param type="Image *" name="dst" desc="" />
|
||||||
<Param type="Vector2 *" name="points" desc="" />
|
<Param type="const Vector2 *" name="points" desc="" />
|
||||||
<Param type="int" name="pointCount" desc="" />
|
<Param type="int" name="pointCount" desc="" />
|
||||||
<Param type="Color" name="color" desc="" />
|
<Param type="Color" name="color" desc="" />
|
||||||
</Function>
|
</Function>
|
||||||
|
Reference in New Issue
Block a user