Browse Source

rlparser: update raylib_api.* by CI

pull/5541/head
github-actions[bot] 2 weeks ago
parent
commit
98fdac4e84
4 changed files with 17 additions and 5 deletions
  1. +5
    -0
      tools/rlparser/output/raylib_api.json
  2. +5
    -0
      tools/rlparser/output/raylib_api.lua
  3. +5
    -4
      tools/rlparser/output/raylib_api.txt
  4. +2
    -1
      tools/rlparser/output/raylib_api.xml

+ 5
- 0
tools/rlparser/output/raylib_api.json View File

@ -1154,6 +1154,11 @@
"name": "buffer",
"description": "Pointer to internal data used by the audio system"
},
{
"type": "rAudioProcessor *",
"name": "processor",
"description": "Pointer to internal data processor, useful for audio effects"
},
{
"type": "unsigned int",
"name": "sampleRate",

+ 5
- 0
tools/rlparser/output/raylib_api.lua View File

@ -1154,6 +1154,11 @@ return {
name = "buffer",
description = "Pointer to internal data used by the audio system"
},
{
type = "rAudioProcessor *",
name = "processor",
description = "Pointer to internal data processor, useful for audio effects"
},
{
type = "unsigned int",
name = "sampleRate",

+ 5
- 4
tools/rlparser/output/raylib_api.txt View File

@ -496,13 +496,14 @@ Struct 26: Wave (5 fields)
Field[3]: unsigned int sampleSize // Bit depth (bits per sample): 8, 16, 32 (24 not supported)
Field[4]: unsigned int channels // Number of channels (1-mono, 2-stereo, ...)
Field[5]: void * data // Buffer data pointer
Struct 27: AudioStream (4 fields)
Struct 27: AudioStream (5 fields)
Name: AudioStream
Description: AudioStream, custom audio stream
Field[1]: rAudioBuffer * buffer // Pointer to internal data used by the audio system
Field[2]: unsigned int sampleRate // Frequency (samples per second)
Field[3]: unsigned int sampleSize // Bit depth (bits per sample): 8, 16, 32 (24 not supported)
Field[4]: unsigned int channels // Number of channels (1-mono, 2-stereo, ...)
Field[2]: rAudioProcessor * processor // Pointer to internal data processor, useful for audio effects
Field[3]: unsigned int sampleRate // Frequency (samples per second)
Field[4]: unsigned int sampleSize // Bit depth (bits per sample): 8, 16, 32 (24 not supported)
Field[5]: unsigned int channels // Number of channels (1-mono, 2-stereo, ...)
Struct 28: Sound (2 fields)
Name: Sound
Description: Sound

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

@ -241,8 +241,9 @@
<Field type="unsigned int" name="channels" desc="Number of channels (1-mono, 2-stereo, ...)" />
<Field type="void *" name="data" desc="Buffer data pointer" />
</Struct>
<Struct name="AudioStream" fieldCount="4" desc="AudioStream, custom audio stream">
<Struct name="AudioStream" fieldCount="5" desc="AudioStream, custom audio stream">
<Field type="rAudioBuffer *" name="buffer" desc="Pointer to internal data used by the audio system" />
<Field type="rAudioProcessor *" name="processor" desc="Pointer to internal data processor, useful for audio effects" />
<Field type="unsigned int" name="sampleRate" desc="Frequency (samples per second)" />
<Field type="unsigned int" name="sampleSize" desc="Bit depth (bits per sample): 8, 16, 32 (24 not supported)" />
<Field type="unsigned int" name="channels" desc="Number of channels (1-mono, 2-stereo, ...)" />

Loading…
Cancel
Save