Browse Source

rlparser: update raylib_api.* by CI

pull/5320/merge
github-actions[bot] 3 days ago
parent
commit
4d9df337a7
4 changed files with 4 additions and 4 deletions
  1. +1
    -1
      tools/rlparser/output/raylib_api.json
  2. +1
    -1
      tools/rlparser/output/raylib_api.lua
  3. +1
    -1
      tools/rlparser/output/raylib_api.txt
  4. +1
    -1
      tools/rlparser/output/raylib_api.xml

+ 1
- 1
tools/rlparser/output/raylib_api.json View File

@ -11730,7 +11730,7 @@
},
{
"name": "UpdateSound",
"description": "Update sound buffer with new data (data and frame count should fit in sound)",
"description": "Update sound buffer with new data (default data format: 32 bit float, stereo)",
"returnType": "void",
"params": [
{

+ 1
- 1
tools/rlparser/output/raylib_api.lua View File

@ -7995,7 +7995,7 @@ return {
},
{
name = "UpdateSound",
description = "Update sound buffer with new data (data and frame count should fit in sound)",
description = "Update sound buffer with new data (default data format: 32 bit float, stereo)",
returnType = "void",
params = {
{type = "Sound", name = "sound"},

+ 1
- 1
tools/rlparser/output/raylib_api.txt View File

@ -4483,7 +4483,7 @@ Function 543: IsSoundValid() (1 input parameters)
Function 544: UpdateSound() (3 input parameters)
Name: UpdateSound
Return type: void
Description: Update sound buffer with new data (data and frame count should fit in sound)
Description: Update sound buffer with new data (default data format: 32 bit float, stereo)
Param[1]: sound (type: Sound)
Param[2]: data (type: const void *)
Param[3]: sampleCount (type: int)

+ 1
- 1
tools/rlparser/output/raylib_api.xml View File

@ -2998,7 +2998,7 @@
<Function name="IsSoundValid" retType="bool" paramCount="1" desc="Checks if a sound is valid (data loaded and buffers initialized)">
<Param type="Sound" name="sound" desc="" />
</Function>
<Function name="UpdateSound" retType="void" paramCount="3" desc="Update sound buffer with new data (data and frame count should fit in sound)">
<Function name="UpdateSound" retType="void" paramCount="3" desc="Update sound buffer with new data (default data format: 32 bit float, stereo)">
<Param type="Sound" name="sound" desc="" />
<Param type="const void *" name="data" desc="" />
<Param type="int" name="sampleCount" desc="" />

Loading…
Cancel
Save