API CHANGE: Update ma_node_graph_uninit().

This removes the allocation callbacks parameter. These are now managed
internally. This is in preparation for some future changes to data
source management.
This commit is contained in:
David Reid
2026-04-28 17:20:31 +10:00
parent 44323c9cae
commit 52f22d6597
7 changed files with 15 additions and 13 deletions
@@ -143,7 +143,7 @@ int main(int argc, char** argv)
/*done4:*/ ma_data_source_node_uninit(&g_exciteNode, NULL);
done3: ma_data_source_node_uninit(&g_sourceNode, NULL);
done2: ma_vocoder_node_uninit(&g_vocoderNode, NULL);
done1: ma_node_graph_uninit(&g_nodeGraph, NULL);
done1: ma_node_graph_uninit(&g_nodeGraph);
done0: ma_device_uninit(&device);
(void)argc;