rlparser: update raylib_api.* by CI
This commit is contained in:
parent
2061f692ec
commit
98fdac4e84
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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…
Reference in New Issue
Block a user