-
-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mix: Add support for the majority of missing & new functions in newer…
… SDL_mixer versions (#612) * mix: Added GetMusicLoopLengthTime and MusicDuration * mix: Update and add missing documentation links * mix: Added support for missing and new functions Including SDL_mixer version 2.0.0, 2.0.2, 2.6.0, and 2.8.0 Added the following functions: in sdl_mixer.go: - LinkedVersion - HasChunkDecoder - HasMusicDecoder - GetMusicAlbumTag - GetMusicArtistTag - GetMusicCopyrightTag - GetMusicLoopEndTime - GetMusicLoopStartTime - GetMusicPosition - GetMusicTitle - GetMusicTitleTag - GetMusicVolume - MasterVolume - ModMusicJumpToOrder - GetNumTracks - PauseAudio - StartTrack in midi.go: - SetTimidityCfg * mix: Fix function name typo in definition
- Loading branch information
Showing
3 changed files
with
395 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,40 @@ | ||
## 2.8.0 | ||
|
||
- [x] Mix_GetNumTracks | ||
- [x] Mix_PauseAudio | ||
- [x] Mix_StartTrack | ||
|
||
## 2.6.0 | ||
|
||
- [x] Mix_GetMusicAlbumTag | ||
- [x] Mix_GetMusicArtistTag | ||
- [x] Mix_GetMusicCopyrightTag | ||
- [x] Mix_GetMusicLoopEndTime | ||
- [x] Mix_GetMusicLoopLengthTime | ||
- [x] Mix_GetMusicLoopStartTime | ||
- [x] Mix_GetMusicPosition | ||
- [x] Mix_GetMusicTitle | ||
- [x] Mix_GetMusicTitleTag | ||
- [x] Mix_GetMusicVolume | ||
- [x] Mix_HasMusicDecoder | ||
- [x] Mix_MasterVolume | ||
- [x] Mix_ModMusicJumpToOrder | ||
- [x] Mix_MusicDuration | ||
- [x] Mix_SetTimidityCfg | ||
|
||
## 2.0.2 | ||
|
||
- [ ] OpenAudioDevice() | ||
- [x] OpenAudioDevice() | ||
- [x] Mix_HasChunkDecoder | ||
|
||
## 2.0.0 | ||
|
||
- [ ] UnregisterEffect() | ||
- [ ] SetPostMix() | ||
- [ ] HookMusic() | ||
- [ ] HookMusicFinished() | ||
- [ ] ChannelFinished() | ||
- [ ] RegisterEffect() | ||
- [ ] UnregisterAllEffects() | ||
- [ ] EachSoundFont() | ||
- [x] SetPostMix() | ||
- [x] HookMusic() | ||
- [x] HookMusicFinished() | ||
- [x] ChannelFinished() | ||
- [x] RegisterEffect() | ||
- [x] UnregisterAllEffects() | ||
- [x] EachSoundFont() | ||
- [x] LinkedVersion() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.