From fc677beac99d90cad6510a103fa83a5bd8bc6c60 Mon Sep 17 00:00:00 2001 From: David Reid Date: Sun, 30 Nov 2025 19:47:33 +1000 Subject: [PATCH] Add SDL2 and PipeWire logs to deviceio test. --- tests/deviceio/deviceio.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/tests/deviceio/deviceio.c b/tests/deviceio/deviceio.c index a604a496..5e5d9b78 100644 --- a/tests/deviceio/deviceio.c +++ b/tests/deviceio/deviceio.c @@ -275,6 +275,19 @@ void print_enabled_backends(void) } } + if (ma_device_backend_sdl != NULL) { + printf(" SDL2\n"); + } + + #if defined(MA_TESTS_INCLUDE_PIPEWIRE) + { + if (ma_device_backend_pipewire != NULL) { + printf(" PipeWire\n"); + } + } + #endif + + printf("\n"); }