rlparser: update raylib_api.* by CI
This commit is contained in:
@@ -8877,7 +8877,7 @@
|
||||
},
|
||||
{
|
||||
"name": "DrawTextureEx",
|
||||
"description": "Draw a Texture2D with extended parameters",
|
||||
"description": "Draw a Texture2D with rotation and scale",
|
||||
"returnType": "void",
|
||||
"params": [
|
||||
{
|
||||
@@ -9260,7 +9260,7 @@
|
||||
},
|
||||
{
|
||||
"name": "LoadFontEx",
|
||||
"description": "Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load the default character set, font size is provided in pixels height",
|
||||
"description": "Load font from file with defined codepoints and generation size, use NULL for codepoints and 0 for codepointCount to load the default character set, font size is provided in pixels height",
|
||||
"returnType": "Font",
|
||||
"params": [
|
||||
{
|
||||
@@ -10336,7 +10336,7 @@
|
||||
},
|
||||
{
|
||||
"name": "DrawTriangle3D",
|
||||
"description": "Draw a color-filled triangle (vertex in counter-clockwise order!)",
|
||||
"description": "Draw a color-filled triangle, counter-clockwise vertex order",
|
||||
"returnType": "void",
|
||||
"params": [
|
||||
{
|
||||
@@ -10489,7 +10489,7 @@
|
||||
},
|
||||
{
|
||||
"name": "DrawSphereEx",
|
||||
"description": "Draw sphere with extended parameters",
|
||||
"description": "Draw sphere with defined rings and slices",
|
||||
"returnType": "void",
|
||||
"params": [
|
||||
{
|
||||
@@ -10856,7 +10856,7 @@
|
||||
},
|
||||
{
|
||||
"name": "DrawModelEx",
|
||||
"description": "Draw a model with extended parameters",
|
||||
"description": "Draw a model with custom transform",
|
||||
"returnType": "void",
|
||||
"params": [
|
||||
{
|
||||
@@ -10910,7 +10910,7 @@
|
||||
},
|
||||
{
|
||||
"name": "DrawModelWiresEx",
|
||||
"description": "Draw a model wires (with texture if set) with extended parameters",
|
||||
"description": "Draw a model wires with custom transform",
|
||||
"returnType": "void",
|
||||
"params": [
|
||||
{
|
||||
|
||||
@@ -6459,7 +6459,7 @@ return {
|
||||
},
|
||||
{
|
||||
name = "DrawTextureEx",
|
||||
description = "Draw a Texture2D with extended parameters",
|
||||
description = "Draw a Texture2D with rotation and scale",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "Texture2D", name = "texture"},
|
||||
@@ -6674,7 +6674,7 @@ return {
|
||||
},
|
||||
{
|
||||
name = "LoadFontEx",
|
||||
description = "Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load the default character set, font size is provided in pixels height",
|
||||
description = "Load font from file with defined codepoints and generation size, use NULL for codepoints and 0 for codepointCount to load the default character set, font size is provided in pixels height",
|
||||
returnType = "Font",
|
||||
params = {
|
||||
{type = "const char *", name = "fileName"},
|
||||
@@ -7258,7 +7258,7 @@ return {
|
||||
},
|
||||
{
|
||||
name = "DrawTriangle3D",
|
||||
description = "Draw a color-filled triangle (vertex in counter-clockwise order!)",
|
||||
description = "Draw a color-filled triangle, counter-clockwise vertex order",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "Vector3", name = "v1"},
|
||||
@@ -7333,7 +7333,7 @@ return {
|
||||
},
|
||||
{
|
||||
name = "DrawSphereEx",
|
||||
description = "Draw sphere with extended parameters",
|
||||
description = "Draw sphere with defined rings and slices",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "Vector3", name = "centerPos"},
|
||||
@@ -7514,7 +7514,7 @@ return {
|
||||
},
|
||||
{
|
||||
name = "DrawModelEx",
|
||||
description = "Draw a model with extended parameters",
|
||||
description = "Draw a model with custom transform",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "Model", name = "model"},
|
||||
@@ -7538,7 +7538,7 @@ return {
|
||||
},
|
||||
{
|
||||
name = "DrawModelWiresEx",
|
||||
description = "Draw a model wires (with texture if set) with extended parameters",
|
||||
description = "Draw a model wires with custom transform",
|
||||
returnType = "void",
|
||||
params = {
|
||||
{type = "Model", name = "model"},
|
||||
|
||||
@@ -3405,7 +3405,7 @@ Function 383: DrawTextureV() (3 input parameters)
|
||||
Function 384: DrawTextureEx() (5 input parameters)
|
||||
Name: DrawTextureEx
|
||||
Return type: void
|
||||
Description: Draw a Texture2D with extended parameters
|
||||
Description: Draw a Texture2D with rotation and scale
|
||||
Param[1]: texture (type: Texture2D)
|
||||
Param[2]: position (type: Vector2)
|
||||
Param[3]: rotation (type: float)
|
||||
@@ -3554,7 +3554,7 @@ Function 406: LoadFont() (1 input parameters)
|
||||
Function 407: LoadFontEx() (4 input parameters)
|
||||
Name: LoadFontEx
|
||||
Return type: Font
|
||||
Description: Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load the default character set, font size is provided in pixels height
|
||||
Description: Load font from file with defined codepoints and generation size, use NULL for codepoints and 0 for codepointCount to load the default character set, font size is provided in pixels height
|
||||
Param[1]: fileName (type: const char *)
|
||||
Param[2]: fontSize (type: int)
|
||||
Param[3]: codepoints (type: const int *)
|
||||
@@ -3958,7 +3958,7 @@ Function 466: DrawCircle3D() (5 input parameters)
|
||||
Function 467: DrawTriangle3D() (4 input parameters)
|
||||
Name: DrawTriangle3D
|
||||
Return type: void
|
||||
Description: Draw a color-filled triangle (vertex in counter-clockwise order!)
|
||||
Description: Draw a color-filled triangle, counter-clockwise vertex order
|
||||
Param[1]: v1 (type: Vector3)
|
||||
Param[2]: v2 (type: Vector3)
|
||||
Param[3]: v3 (type: Vector3)
|
||||
@@ -4012,7 +4012,7 @@ Function 473: DrawSphere() (3 input parameters)
|
||||
Function 474: DrawSphereEx() (5 input parameters)
|
||||
Name: DrawSphereEx
|
||||
Return type: void
|
||||
Description: Draw sphere with extended parameters
|
||||
Description: Draw sphere with defined rings and slices
|
||||
Param[1]: centerPos (type: Vector3)
|
||||
Param[2]: radius (type: float)
|
||||
Param[3]: rings (type: int)
|
||||
@@ -4142,7 +4142,7 @@ Function 490: DrawModel() (4 input parameters)
|
||||
Function 491: DrawModelEx() (6 input parameters)
|
||||
Name: DrawModelEx
|
||||
Return type: void
|
||||
Description: Draw a model with extended parameters
|
||||
Description: Draw a model with custom transform
|
||||
Param[1]: model (type: Model)
|
||||
Param[2]: position (type: Vector3)
|
||||
Param[3]: rotationAxis (type: Vector3)
|
||||
@@ -4160,7 +4160,7 @@ Function 492: DrawModelWires() (4 input parameters)
|
||||
Function 493: DrawModelWiresEx() (6 input parameters)
|
||||
Name: DrawModelWiresEx
|
||||
Return type: void
|
||||
Description: Draw a model wires (with texture if set) with extended parameters
|
||||
Description: Draw a model wires with custom transform
|
||||
Param[1]: model (type: Model)
|
||||
Param[2]: position (type: Vector3)
|
||||
Param[3]: rotationAxis (type: Vector3)
|
||||
|
||||
@@ -2242,7 +2242,7 @@
|
||||
<Param type="Vector2" name="position" desc="" />
|
||||
<Param type="Color" name="tint" desc="" />
|
||||
</Function>
|
||||
<Function name="DrawTextureEx" retType="void" paramCount="5" desc="Draw a Texture2D with extended parameters">
|
||||
<Function name="DrawTextureEx" retType="void" paramCount="5" desc="Draw a Texture2D with rotation and scale">
|
||||
<Param type="Texture2D" name="texture" desc="" />
|
||||
<Param type="Vector2" name="position" desc="" />
|
||||
<Param type="float" name="rotation" desc="" />
|
||||
@@ -2344,7 +2344,7 @@
|
||||
<Function name="LoadFont" retType="Font" paramCount="1" desc="Load font from file into GPU memory (VRAM)">
|
||||
<Param type="const char *" name="fileName" desc="" />
|
||||
</Function>
|
||||
<Function name="LoadFontEx" retType="Font" paramCount="4" desc="Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load the default character set, font size is provided in pixels height">
|
||||
<Function name="LoadFontEx" retType="Font" paramCount="4" desc="Load font from file with defined codepoints and generation size, use NULL for codepoints and 0 for codepointCount to load the default character set, font size is provided in pixels height">
|
||||
<Param type="const char *" name="fileName" desc="" />
|
||||
<Param type="int" name="fontSize" desc="" />
|
||||
<Param type="const int *" name="codepoints" desc="" />
|
||||
@@ -2628,7 +2628,7 @@
|
||||
<Param type="float" name="rotationAngle" desc="" />
|
||||
<Param type="Color" name="color" desc="" />
|
||||
</Function>
|
||||
<Function name="DrawTriangle3D" retType="void" paramCount="4" desc="Draw a color-filled triangle (vertex in counter-clockwise order!)">
|
||||
<Function name="DrawTriangle3D" retType="void" paramCount="4" desc="Draw a color-filled triangle, counter-clockwise vertex order">
|
||||
<Param type="Vector3" name="v1" desc="" />
|
||||
<Param type="Vector3" name="v2" desc="" />
|
||||
<Param type="Vector3" name="v3" desc="" />
|
||||
@@ -2668,7 +2668,7 @@
|
||||
<Param type="float" name="radius" desc="" />
|
||||
<Param type="Color" name="color" desc="" />
|
||||
</Function>
|
||||
<Function name="DrawSphereEx" retType="void" paramCount="5" desc="Draw sphere with extended parameters">
|
||||
<Function name="DrawSphereEx" retType="void" paramCount="5" desc="Draw sphere with defined rings and slices">
|
||||
<Param type="Vector3" name="centerPos" desc="" />
|
||||
<Param type="float" name="radius" desc="" />
|
||||
<Param type="int" name="rings" desc="" />
|
||||
@@ -2764,7 +2764,7 @@
|
||||
<Param type="float" name="scale" desc="" />
|
||||
<Param type="Color" name="tint" desc="" />
|
||||
</Function>
|
||||
<Function name="DrawModelEx" retType="void" paramCount="6" desc="Draw a model with extended parameters">
|
||||
<Function name="DrawModelEx" retType="void" paramCount="6" desc="Draw a model with custom transform">
|
||||
<Param type="Model" name="model" desc="" />
|
||||
<Param type="Vector3" name="position" desc="" />
|
||||
<Param type="Vector3" name="rotationAxis" desc="" />
|
||||
@@ -2778,7 +2778,7 @@
|
||||
<Param type="float" name="scale" desc="" />
|
||||
<Param type="Color" name="tint" desc="" />
|
||||
</Function>
|
||||
<Function name="DrawModelWiresEx" retType="void" paramCount="6" desc="Draw a model wires (with texture if set) with extended parameters">
|
||||
<Function name="DrawModelWiresEx" retType="void" paramCount="6" desc="Draw a model wires with custom transform">
|
||||
<Param type="Model" name="model" desc="" />
|
||||
<Param type="Vector3" name="position" desc="" />
|
||||
<Param type="Vector3" name="rotationAxis" desc="" />
|
||||
|
||||
Reference in New Issue
Block a user