Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Check for GCC's __get_cpuid before using it | Chris Robinson | 2014-08-11 | 1 | -2/+2 | |
| | ||||||
* | Simplify some vector size range checks | Chris Robinson | 2014-08-10 | 1 | -12/+14 | |
| | ||||||
* | Give NULL for null-vector iterators | Chris Robinson | 2014-08-10 | 1 | -1/+3 | |
| | ||||||
* | Pass pointer-to-vector types as char* instead of void* | Chris Robinson | 2014-08-10 | 1 | -8/+8 | |
| | | | | | C aliasing rules only allow char* to alias an otherwise-incompatible type, rather than void*. | |||||
* | Check the current directory first for data files | Chris Robinson | 2014-07-21 | 1 | -2/+16 | |
| | ||||||
* | Don't require pre-declaring vector types | Chris Robinson | 2014-07-06 | 1 | -0/+1 | |
| | ||||||
* | Don't try to set fp precision with __control87_2 or _controlfp | Chris Robinson | 2014-06-08 | 1 | -10/+4 | |
| | ||||||
* | Print CPU extensions that are unavailable but requested | Chris Robinson | 2014-06-08 | 1 | -6/+6 | |
| | ||||||
* | Add SSE2 and SSE4.1 linear resamplers | Timothy Arceri | 2014-06-06 | 1 | -4/+11 | |
| | | | | | Currently the only way SSE 4.1 is detected is by using __get_cpuid, i.e. with GCC. Windows' IsProcessorFeaturePresent does not report SSE4.1 capabilities. | |||||
* | Ensure a proper amount of new elements are being reserved when inserting | Chris Robinson | 2014-05-22 | 1 | -1/+5 | |
| | ||||||
* | Move RWLock and UIntMap implementations to common | Chris Robinson | 2014-05-07 | 1 | -187/+0 | |
| | | | | This should make the code in common completely self-reliant. | |||||
* | Use standard types for the RWLock | Chris Robinson | 2014-05-07 | 1 | -7/+7 | |
| | ||||||
* | Move atomic method definitions to a separate common source | Chris Robinson | 2014-05-06 | 1 | -7/+0 | |
| | ||||||
* | Use ALboolean for al_string_empty's return type | Chris Robinson | 2014-04-30 | 1 | -1/+1 | |
| | ||||||
* | Rename althread_once to be more C11-like | Chris Robinson | 2014-04-17 | 1 | -11/+0 | |
| | ||||||
* | Handle the lib name as UTF-8 | Chris Robinson | 2014-04-17 | 1 | -14/+28 | |
| | ||||||
* | Make and use a C11-like altimespec_get wrapper function | Chris Robinson | 2014-04-17 | 1 | -39/+0 | |
| | ||||||
* | Rename althread_key_ wrappers to altss_ and move it to threads.h/c | Chris Robinson | 2014-04-17 | 1 | -25/+0 | |
| | ||||||
* | Avoid using a Sleep() wrapper | Chris Robinson | 2014-04-16 | 1 | -10/+0 | |
| | ||||||
* | Use althrd_yield instead of alsched_yield | Chris Robinson | 2014-04-16 | 1 | -4/+2 | |
| | ||||||
* | Move the threads and mutex wrappers to threads.c | Chris Robinson | 2014-04-16 | 1 | -256/+0 | |
| | ||||||
* | Fix Windows' almtx_timedlock | Chris Robinson | 2014-04-16 | 1 | -6/+6 | |
| | ||||||
* | Implement a C11-like thread wrapper and use it in mmdevapi and pulseaudio | Chris Robinson | 2014-04-16 | 1 | -11/+158 | |
| | ||||||
* | Use a C11-like mutex wrapper instead of CRITICAL_SECTIONs | Chris Robinson | 2014-04-16 | 1 | -26/+96 | |
| | ||||||
* | Use a helper to detect a path slash on Windows | Chris Robinson | 2014-04-13 | 1 | -2/+5 | |
| | ||||||
* | Use VECTOR_INSERT to copy and append strings | Chris Robinson | 2014-04-13 | 1 | -12/+8 | |
| | ||||||
* | Pass in the vector insertion point as a pointer | Chris Robinson | 2014-04-13 | 1 | -1/+3 | |
| | ||||||
* | Avoid referencing the start iterator twice for vector insertion | Chris Robinson | 2014-04-13 | 1 | -2/+3 | |
| | ||||||
* | Add a VECTOR_INSERT method to insert a range of elements at once | Chris Robinson | 2014-04-09 | 1 | -0/+20 | |
| | ||||||
* | Fix the default XDG_DATA_DIRS paths | Chris Robinson | 2014-04-07 | 1 | -1/+1 | |
| | ||||||
* | Properly compare al_strings | Chris Robinson | 2014-04-03 | 1 | -2/+24 | |
| | ||||||
* | Recognize NULL as an empty vector/string | Chris Robinson | 2014-04-03 | 1 | -4/+9 | |
| | ||||||
* | Don't pass the vector's capacity as a parameter to vector_reserve | Chris Robinson | 2014-03-31 | 1 | -4/+4 | |
| | ||||||
* | strlen returns size_t | Chris Robinson | 2014-03-28 | 1 | -1/+1 | |
| | ||||||
* | Use al_string to handle mmdevapi and dsound device names | Chris Robinson | 2014-03-28 | 1 | -0/+27 | |
| | ||||||
* | Add an al_string type and use it for the device lists | Chris Robinson | 2014-03-28 | 1 | -0/+64 | |
| | ||||||
* | Properly handle special folder names with extended characters | Chris Robinson | 2014-03-28 | 1 | -26/+43 | |
| | ||||||
* | Wrap fopen calls under Windows | Chris Robinson | 2014-03-28 | 1 | -5/+36 | |
| | | | | | | | The idea is that all filenames we deal with are encoded as UTF-8, but the Windows functions that take a char string interpret it using the ANSI codepage. So instead, we convert the UTF-8 string to a wchar string, and then use the wchar functions for proper extended character filename support. | |||||
* | Add some integer casts, and a range check | Chris Robinson | 2014-03-23 | 1 | -2/+7 | |
| | ||||||
* | Increase the vector reserve as needed when pushing in new items | Chris Robinson | 2014-03-21 | 1 | -1/+8 | |
| | ||||||
* | Rename the vector's Max field to Capacity | Chris Robinson | 2014-03-21 | 1 | -2/+2 | |
| | ||||||
* | Add a generic vector interface and use it for the active effect slots | Chris Robinson | 2014-03-21 | 1 | -0/+21 | |
| | ||||||
* | Return the original value from CompExchange* | Chris Robinson | 2014-03-09 | 1 | -2/+2 | |
| | ||||||
* | Move PATH_MAX fallback definitions to alMain.h | Chris Robinson | 2014-02-27 | 1 | -10/+0 | |
| | ||||||
* | Move OpenDataFile to helpers.c so other sources can use it | Chris Robinson | 2014-02-27 | 1 | -0/+133 | |
| | ||||||
* | Include sys/sysconf.h if available for sysconf() | Chris Robinson | 2014-01-18 | 1 | -0/+3 | |
| | ||||||
* | Rename pthread wrappers used for Windows to althread | Chris Robinson | 2013-12-06 | 1 | -7/+9 | |
| | ||||||
* | Use C99 inline in more places | Chris Robinson | 2013-11-04 | 1 | -0/+4 | |
| | ||||||
* | Use C99 inline semantics | Chris Robinson | 2013-11-04 | 1 | -0/+16 | |
| | ||||||
* | Move the device mutex to the backend | Chris Robinson | 2013-10-28 | 1 | -0/+2 | |
| |