Mercurial > sdl-ios-xcode
comparison src/audio/dmedia/SDL_irixaudio.c @ 3798:c8b3d3d13ed1 SDL-ryan-multiple-audio-device
Audio bootstraps can now specify that a driver is only to be used if
explicitly requested (for things like the "disk" driver that is always
available but you would never want to default to using).
Trimmed out code that can be handled by stubs in the core. The "dummy" driver
is pretty damned small now. :)
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Wed, 04 Oct 2006 21:27:53 +0000 |
parents | adf732f1f016 |
children | 1f156fd874fa |
comparison
equal
deleted
inserted
replaced
3797:9dc81c6acaf5 | 3798:c8b3d3d13ed1 |
---|---|
100 return this; | 100 return this; |
101 } | 101 } |
102 | 102 |
103 AudioBootStrap DMEDIA_bootstrap = { | 103 AudioBootStrap DMEDIA_bootstrap = { |
104 "AL", "IRIX DMedia audio", | 104 "AL", "IRIX DMedia audio", |
105 Audio_Available, Audio_CreateDevice | 105 Audio_Available, Audio_CreateDevice, 0 |
106 }; | 106 }; |
107 | 107 |
108 | 108 |
109 void static | 109 void static |
110 AL_WaitAudio(_THIS) | 110 AL_WaitAudio(_THIS) |