aboutsummaryrefslogtreecommitdiff
path: root/sokol_audio.h
Commit message (Collapse)AuthorAgeFilesLines
* fixed issue in 3ds audio shutdownCrackedPixel2025-11-151-1/+2
|
* update delay commentCrackedPixel2025-11-121-1/+3
|
* update commentCrackedPixel2025-11-121-1/+1
|
* pr feedback changesCrackedPixel2025-11-121-99/+87
|
* renamed 3ds_ prefix to n3dsCrackedPixel2025-11-091-4/+4
|
* added 3ds backend WIPCrackedPixel2025-11-091-1/+213
|
* added psvita backendCrackedPixel2025-10-191-0/+143
|
* sokol_gfx.h win32: ignore unknown pragma warnings when building with gcc ↵Andre Weissflog2025-08-251-0/+7
| | | | (fixes #1311)
* sokol_audio.h: remove extra semicolonsfuhsnn2025-06-201-2/+2
|
* sokol_audio.h android: remove OpenSLES backend (deprecated in more recent ↵Andre Weissflog2025-04-051-311/+9
| | | | NDK versions)
* fix clang warnings on windowsAndre Weissflog2025-03-281-1/+1
|
* add -Wextra-semi to CI tests and fix resulting warningsAndre Weissflog2025-01-301-7/+7
|
* Fix _saudio_backend_shutdown for _SAUDIO_APPLEMario Zechner2024-09-151-1/+1
| | | The code path tries to return void. Does not compile for obvious reasons.
* dummy commit (whitespace change in sokol_audio.h) to check if bindgen CI ↵Andre Weissflog2024-08-141-0/+1
| | | | pipeline works as expected
* sokol_audio.h: add an assert to public API funcs to make sure that ↵Andre Weissflog2024-07-041-0/+13
| | | | saudio_setup() had been called
* fix include to work on FreeBSDKim Shrier2024-05-241-1/+5
|
* rename custom allocator callbacks to alloc_fn/free_fnAndre Weissflog2023-09-251-14/+12
|
* sokol_audio.h: Include alloca.h on Linuxdarkerbit2023-02-161-0/+1
| | | | | Required by a snd_pcm_hw_params_alloca call in _saudio_alsa_backend_init. This change makes it so the implementation links correctly on Linux in -std=c99 mode, instead of relying on implicit alloca only provided by GNU extensions.
* sokol_audio.h: change figlet font for better minimap readabilityAndre Weissflog2023-02-111-90/+75
|
* sokol_audio.h: add human readable logging stringsAndre Weissflog2023-02-101-39/+39
|
* sokol_audio/fetch/spine.h: better naming for log item xmacrosAndre Weissflog2023-01-311-41/+41
|
* sokol_audio.h, sokol_spine.h: doc and macro cleanupAndre Weissflog2023-01-311-4/+11
|
* sokol_audio.h, sokol_spine.h: remove loglevel enumAndre Weissflog2023-01-311-20/+6
|
* sokol_audio.h, sokol_spine.h: remove stdio.h includeAndre Weissflog2023-01-311-1/+0
|
* sokol_audio.h: fix doc comment blockAndre Weissflog2023-01-301-1/+1
|
* sokol_audio.h: remove default logging code, instead recommend sokol_log.hAndre Weissflog2023-01-301-46/+36
|
* sokol_audio.h: minor consistency cleanupAndre Weissflog2023-01-291-1/+1
|
* sokol_audio.h, sokol_spine.h: logging code cleanupAndre Weissflog2023-01-291-9/+9
|
* sokol_audio.h: fix windows buildAndre Weissflog2023-01-281-2/+2
|
* sokol_audio.h: fix linux buildAndre Weissflog2023-01-281-1/+1
|
* sokol_audio.h: include stdio.h in implementationAndre Weissflog2023-01-281-0/+1
|
* sokol_audio.h: remove uwp support, replace logging with new unified logging ↵Andre Weissflog2023-01-281-249/+259
| | | | and error reporting callback
* sokol_audio.h android: fix unused warningsAndre Weissflog2023-01-221-0/+3
|
* sokol_audio.h: whitespace fixAndre Weissflog2023-01-211-1/+0
|
* sokol_audio.h android: implement AAudio backend and make it defaultAndre Weissflog2023-01-211-40/+153
|
* sokol_audio.h webaudio: resume audio context in touchend, not touchstart ↵Andre Weissflog2023-01-191-1/+1
| | | | (fixes #701)
* sokol_audio.h android: fix SAUDIO_NUM_BUFFERS vs SAUDIO_SLES_NUM_BUFFERSAndre Weissflog2023-01-181-5/+5
|
* sokol_audio.h linux: fix backend init callAndre Weissflog2023-01-181-1/+1
|
* sokol_audio.h: fix platform-specific init and shutdown function namesAndre Weissflog2023-01-181-4/+4
|
* sokol_audio.h ios: fix a AVAudioSession setup error:Andre Weissflog2023-01-181-1/+1
| | | | Error: category option 'defaultToSpeaker' is only applicable with category 'playAndRecord'
* sokol_audio.h macos/ios: init is now more fault-tolerant, some general init ↵Andre Weissflog2023-01-181-25/+49
| | | | cleanup
* sokol_audio.h: update section headers, backend-specific function namesAndre Weissflog2023-01-181-151/+149
|
* sokol_audio.h: start a little general code cleanup sessionAndre Weissflog2023-01-171-168/+303
|
* sokol_audio.h: SOKOL_LOG => SOKOL_AUDIOAndre Weissflog2023-01-161-4/+4
|
* sokol_audio.h: check more OpenSLES calls during Android audio initDan Fandrich2022-11-191-6/+19
|
* sokol_audio.h: add a audio worklet related link to the comment sectionAndre Weissflog2022-11-171-0/+2
|
* simplify logging preprocessor macrosAndre Weissflog2022-10-221-24/+11
|
* Merge branch 'log-callback' of github.com:Manuzor/sokol into ↵Andre Weissflog2022-10-221-31/+95
|\ | | | | | | Manuzor-log-callback
| * Replace SOKOL_LOG with runtime callbacks.Manuel Floruß2022-10-031-31/+95
| | | | | | | | Also removes SOKOL_LOG from sokol_fontstash.h and sokol_args.h because it's not used there.
* | sokoL_app/args/audio/fetch.h emsc: suppress closure analysis false ↵Andre Weissflog2022-10-191-10/+12
| | | | | | | | positives, modernize embedded Javascript