Add SDL2 and PipeWire logs to deviceio test.

This commit is contained in:
David Reid
2025-11-30 19:47:33 +10:00
parent ac7a8e691b
commit fc677beac9
+13
View File
@@ -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");
}