aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/loopback.c
Commit message (Collapse)AuthorAgeFilesLines
* Move backend sources to a separate sub-directoryChris Robinson2011-08-201-77/+0
|
* Allow the backend init functions to return failureChris Robinson2011-08-171-1/+2
|
* Use a proper enum for the probe typeChris Robinson2011-06-141-1/+1
|
* Make some declarations static or static constChris Robinson2011-05-211-1/+1
|
* Implement a basic non-real-time loopback deviceChris Robinson2011-03-111-0/+76
Currently it behaves just like a normal device except contexts are only processed during calls to alcRenderSamples. Additionally, the ALC_SYNC and ALC_REFRESH context attributes are not valid for these devices, and there are two new context attributes to specify the rendering format: ALC_FORMAT_TYPE and ALC_FORMAT_CHANNELS. These each take one of the type and channel enums added. This stuff is subject to change.