mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-24 07:08:56 +00:00
Fix string defines generating invalid XML (#2426)
This commit is contained in:
@@ -735,6 +735,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",
|
||||
@@ -9645,21 +9650,6 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "GetRayCollisionModel",
|
||||
"description": "Get collision info between ray and model",
|
||||
"returnType": "RayCollision",
|
||||
"params": [
|
||||
{
|
||||
"type": "Ray",
|
||||
"name": "ray"
|
||||
},
|
||||
{
|
||||
"type": "Model",
|
||||
"name": "model"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "GetRayCollisionMesh",
|
||||
"description": "Get collision info between ray and mesh",
|
||||
@@ -10433,6 +10423,51 @@
|
||||
"name": "size"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "SetAudioStreamCallback",
|
||||
"description": "Audio thread callback to request new data",
|
||||
"returnType": "void",
|
||||
"params": [
|
||||
{
|
||||
"type": "AudioStream",
|
||||
"name": "stream"
|
||||
},
|
||||
{
|
||||
"type": "AudioCallback",
|
||||
"name": "callback"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "AttachAudioStreamProcessor",
|
||||
"description": "",
|
||||
"returnType": "void",
|
||||
"params": [
|
||||
{
|
||||
"type": "AudioStream",
|
||||
"name": "stream"
|
||||
},
|
||||
{
|
||||
"type": "AudioCallback",
|
||||
"name": "processor"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "DetachAudioStreamProcessor",
|
||||
"description": "",
|
||||
"returnType": "void",
|
||||
"params": [
|
||||
{
|
||||
"type": "AudioStream",
|
||||
"name": "stream"
|
||||
},
|
||||
{
|
||||
"type": "AudioCallback",
|
||||
"name": "processor"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user