diff options
| author | Ray <[email protected]> | 2024-04-01 18:00:52 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2024-04-01 18:00:52 +0200 |
| commit | 3b353da3ab8742c5a2cf386bc96989d4a1fdc2dd (patch) | |
| tree | f9a248bd64c3851bd1c79e4f0f8f22d9189e068c /src/raylib.h | |
| parent | 7c75746b919d6ec1eeb609ae6f6bfb35b64e0cb7 (diff) | |
| download | raylib-3b353da3ab8742c5a2cf386bc96989d4a1fdc2dd.tar.gz raylib-3b353da3ab8742c5a2cf386bc96989d4a1fdc2dd.zip | |
Address parsing issue when generating XML #3893
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/raylib.h b/src/raylib.h index 0f6fdf51..edf4f138 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1663,10 +1663,10 @@ RLAPI void SetAudioStreamPan(AudioStream stream, float pan); // Set pan RLAPI void SetAudioStreamBufferSizeDefault(int size); // Default size for new audio streams RLAPI void SetAudioStreamCallback(AudioStream stream, AudioCallback callback); // Audio thread callback to request new data -RLAPI void AttachAudioStreamProcessor(AudioStream stream, AudioCallback processor); // Attach audio stream processor to stream, receives the samples as <float>s +RLAPI void AttachAudioStreamProcessor(AudioStream stream, AudioCallback processor); // Attach audio stream processor to stream, receives the samples as 'float' RLAPI void DetachAudioStreamProcessor(AudioStream stream, AudioCallback processor); // Detach audio stream processor from stream -RLAPI void AttachAudioMixedProcessor(AudioCallback processor); // Attach audio stream processor to the entire audio pipeline, receives the samples as <float>s +RLAPI void AttachAudioMixedProcessor(AudioCallback processor); // Attach audio stream processor to the entire audio pipeline, receives the samples as 'float' RLAPI void DetachAudioMixedProcessor(AudioCallback processor); // Detach audio stream processor from the entire audio pipeline #if defined(__cplusplus) |
