Browse Source

Update raylib_api.* by CI

pull/3995/head
github-actions[bot] 6 months ago
parent
commit
272a142ee5
4 changed files with 12 additions and 12 deletions
  1. +3
    -3
      parser/output/raylib_api.json
  2. +3
    -3
      parser/output/raylib_api.lua
  3. +3
    -3
      parser/output/raylib_api.txt
  4. +3
    -3
      parser/output/raylib_api.xml

+ 3
- 3
parser/output/raylib_api.json View File

@ -11231,7 +11231,7 @@
},
{
"name": "WaveCrop",
"description": "Crop a wave to defined samples range",
"description": "Crop a wave to defined frames range",
"returnType": "void",
"params": [
{
@ -11240,11 +11240,11 @@
},
{
"type": "int",
"name": "initSample"
"name": "initFrame"
},
{
"type": "int",
"name": "finalSample"
"name": "finalFrame"
}
]
},

+ 3
- 3
parser/output/raylib_api.lua View File

@ -7733,12 +7733,12 @@ return {
},
{
name = "WaveCrop",
description = "Crop a wave to defined samples range",
description = "Crop a wave to defined frames range",
returnType = "void",
params = {
{type = "Wave *", name = "wave"},
{type = "int", name = "initSample"},
{type = "int", name = "finalSample"}
{type = "int", name = "initFrame"},
{type = "int", name = "finalFrame"}
}
},
{

+ 3
- 3
parser/output/raylib_api.txt View File

@ -4314,10 +4314,10 @@ Function 523: WaveCopy() (1 input parameters)
Function 524: WaveCrop() (3 input parameters)
Name: WaveCrop
Return type: void
Description: Crop a wave to defined samples range
Description: Crop a wave to defined frames range
Param[1]: wave (type: Wave *)
Param[2]: initSample (type: int)
Param[3]: finalSample (type: int)
Param[2]: initFrame (type: int)
Param[3]: finalFrame (type: int)
Function 525: WaveFormat() (4 input parameters)
Name: WaveFormat
Return type: void

+ 3
- 3
parser/output/raylib_api.xml View File

@ -2870,10 +2870,10 @@
<Function name="WaveCopy" retType="Wave" paramCount="1" desc="Copy a wave to a new wave">
<Param type="Wave" name="wave" desc="" />
</Function>
<Function name="WaveCrop" retType="void" paramCount="3" desc="Crop a wave to defined samples range">
<Function name="WaveCrop" retType="void" paramCount="3" desc="Crop a wave to defined frames range">
<Param type="Wave *" name="wave" desc="" />
<Param type="int" name="initSample" desc="" />
<Param type="int" name="finalSample" desc="" />
<Param type="int" name="initFrame" desc="" />
<Param type="int" name="finalFrame" desc="" />
</Function>
<Function name="WaveFormat" retType="void" paramCount="4" desc="Convert wave data to desired format">
<Param type="Wave *" name="wave" desc="" />

Loading…
Cancel
Save