ma_node_graph_read_pcm_frames function

ma_result ma_node_graph_read_pcm_frames(
  1. Pointer<ma_node_graph> pNodeGraph,
  2. Pointer<Void> pFramesOut,
  3. Dartma_uint64 frameCount,
  4. Pointer<ma_uint64> pFramesRead,
)

Implementation

ma_result ma_node_graph_read_pcm_frames(
  ffi.Pointer<ma_node_graph> pNodeGraph,
  ffi.Pointer<ffi.Void> pFramesOut,
  Dartma_uint64 frameCount,
  ffi.Pointer<ma_uint64> pFramesRead,
) => ma_result.fromValue(
  _ma_node_graph_read_pcm_frames(
    pNodeGraph,
    pFramesOut,
    frameCount,
    pFramesRead,
  ),
);