mixDestroyGroup function mixer

void mixDestroyGroup(
  1. Pointer<MixGroup> group
)

Destroy a mixing group.

Any tracks currently assigned to this group will be reassigned to the mixer's internal default group.

\param group the mixing group to destroy.

\threadsafety It is safe to call this function from any thread.

\since This function is available since SDL_mixer 3.0.0.

\sa MIX_CreateGroup

extern SDL_DECLSPEC void SDLCALL MIX_DestroyGroup(MIX_Group *group)

Implementation

void mixDestroyGroup(Pointer<MixGroup> group) {
  final mixDestroyGroupLookupFunction = _libMixer
      .lookupFunction<
        Void Function(Pointer<MixGroup> group),
        void Function(Pointer<MixGroup> group)
      >('MIX_DestroyGroup');
  return mixDestroyGroupLookupFunction(group);
}