ma_node_set_output_bus_volume function

ma_result ma_node_set_output_bus_volume(
  1. Pointer<Void> pNode,
  2. Dartma_uint32 outputBusIndex,
  3. double volume
)

Implementation

ma_result ma_node_set_output_bus_volume(
  ffi.Pointer<ma_node> pNode,
  Dartma_uint32 outputBusIndex,
  double volume,
) => ma_result.fromValue(
  _ma_node_set_output_bus_volume(pNode, outputBusIndex, volume),
);