Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-12-26 | vector math: add implementation of Length and Normalize | wwylele | |
2016-12-26 | MathUtil: add PI constant | wwylele | |
2016-12-26 | Common::Event: add WaitUntil | wwylele | |
2016-12-23 | Merge pull request #2369 from MerryMage/core-frontend | bunnei | |
core: Move emu_window and key_map into core | |||
2016-12-23 | file_util: fix missing sysdata path | wwylele | |
2016-12-23 | core: Move emu_window and key_map into core | MerryMage | |
* Removes circular dependences (common should not depend on core) | |||
2016-12-22 | Merge pull request #2343 from bunnei/core-cleanup | bunnei | |
Core: Top-level consolidate & misc cleanup | |||
2016-12-22 | Merge pull request #2285 from mailwl/csnd-format | bunnei | |
csnd:SND: Reformat source code | |||
2016-12-21 | file_util: Remove unused paths. | bunnei | |
2016-12-19 | Fixed GPLv2 license text in the start. | Vamsi Krishna | |
2016-12-16 | Merge pull request #2316 from endrift/macos-gcc | bunnei | |
Common: Fix gcc build on macOS | |||
2016-12-14 | VideoCore: Convert x64 shader JIT to use Xbyak for assembly | Yuri Kunde Schlesner | |
2016-12-13 | Common: Fix gcc build on macOS | Jeffrey Pfau | |
2016-12-12 | csnd:SND reformat source code | mailwl | |
2016-12-05 | Support mingw cross-compile | Jannik Vogel | |
2016-11-30 | Merge pull request #2228 from freiro/winver_fix | Yuri Kunde Schlesner | |
Move WINVER definition to cmake and a bit of cleanup | |||
2016-11-30 | WINVER definition moved to CMake and cleanup | freiro | |
2016-11-30 | Set client SDK version to Service APIs | mailwl | |
2016-11-29 | Build: Fixed a few warnings. | Subv | |
2016-11-27 | Merge pull request #2168 from mailwl/mic | Sebastian Valle | |
MIC_U: Stub service funcions | |||
2016-11-26 | Move to AppData/Roaming/Citra/ | freiro | |
2016-11-26 | Removed /user/ from path | freiro | |
2016-11-25 | MIC_U: Stub service funcions | mailwl | |
2016-11-24 | Switch to AppData/Roaming | freiro | |
2016-11-19 | Return by value and other fixes | freiro | |
2016-11-19 | Win32 move default user folder location to AppData | freiro | |
2016-11-15 | Merge pull request #2172 from jroweboy/fix-mingw | bunnei | |
Fix mingw compilation support | |||
2016-11-13 | Add mingw compile support | James Rowe | |
2016-11-12 | Round the rectangle size to prevent float to int casting issues | James Rowe | |
And other minor style changes | |||
2016-11-05 | Add default hotkey to swap primary screens. | James Rowe | |
Also minor style changes | |||
2016-11-05 | Rework frame layouts to use a max rectangle instead of hardcoded calculations | James Rowe | |
2016-11-05 | LargeFrameLayout + Swapped | SonofUgly | |
Make small screen stay at 1x, and large screen maintain its aspect ratio. | |||
2016-11-05 | Support additional screen layouts. | James Rowe | |
Allows users to choose a single screen layout or a large screen layout. Adds a configuration option to change the prominent screen. | |||
2016-10-27 | common: use system bswap* functions on more BSDs | Jan Beich | |
2016-10-27 | common: use system CPUID routine on DragonFly as well | Jan Beich | |
2016-10-27 | common: some FreeBSD headers are incomplete to avoid namespace pollution | Jan Beich | |
In file included from src/common/x64/cpu_detect.cpp:16: /usr/include/machine/cpufunc.h:66:17: error: unknown type name 'u_int' static __inline u_int ^ /usr/include/machine/cpufunc.h:67:6: error: unknown type name 'u_int' bsfl(u_int mask) ^ /usr/include/machine/cpufunc.h:69:2: error: unknown type name 'u_int' u_int result; ^ /usr/include/machine/cpufunc.h:75:17: error: unknown type name 'u_long'; did you mean 'long'? static __inline u_long ^ /usr/include/machine/cpufunc.h:76:6: error: unknown type name 'u_long'; did you mean 'long'? bsfq(u_long mask) ^ /usr/include/machine/cpufunc.h:78:2: error: use of undeclared identifier 'u_long'; did you mean 'long'? u_long result; ^ [...] | |||
2016-10-27 | common: convert to standard stat()/fstat() interfaces | Anthony J. Bentley | |
Most modern Unix environments use 64-bit off_t by default: OpenBSD, FreeBSD, OS X, and Linux libc implementations such as Musl. glibc is the lone exception; it can default to 32 bits but this is configurable by setting _FILE_OFFSET_BITS. Avoiding the stat64()/fstat64() interfaces is desirable because they are nonstandard and not implemented on many systems (including OpenBSD and FreeBSD), and using 64 bits for stat()/fstat() is either the default or trivial to set up. | |||
2016-10-27 | common: stat64 is non-standard, hide on a random Unix | Jan Beich | |
src/common/file_util.cpp:79:19: error: variable has incomplete type 'struct stat64' struct stat64 file_info; ^ src/common/file_util.cpp:79:12: note: forward declaration of 'stat64' struct stat64 file_info; ^ src/common/file_util.cpp:99:19: error: variable has incomplete type 'struct stat64' struct stat64 file_info; ^ src/common/file_util.cpp:99:12: note: forward declaration of 'stat64' struct stat64 file_info; ^ src/common/file_util.cpp:342:19: error: variable has incomplete type 'struct stat64' struct stat64 buf; ^ src/common/file_util.cpp:342:12: note: forward declaration of 'stat64' struct stat64 buf; ^ src/common/file_util.cpp:359:19: error: variable has incomplete type 'struct stat64' struct stat64 buf; ^ src/common/file_util.cpp:359:12: note: forward declaration of 'stat64' struct stat64 buf; ^ 4 errors generated. | |||
2016-10-27 | common: only FreeBSD has thread affinity compatible with Linux | Jan Beich | |
src/common/thread.cpp:90:5: error: unknown type name 'cpu_set_t'; did you mean 'cpuset_t'? cpu_set_t cpu_set; ^~~~~~~~~ cpuset_t /usr/include/sys/_cpuset.h:48:24: note: 'cpuset_t' declared here typedef struct _cpuset cpuset_t; ^ 1 error generated. | |||
2016-10-27 | common: define routines to set thread name on more BSDs | Jan Beich | |
src/common/thread.cpp:123:5: error: use of undeclared identifier 'pthread_setname_np' pthread_setname_np(pthread_self(), szThreadName); ^ 1 error generated. | |||
2016-10-20 | Fix typos | Ricardo de Almeida Gonzaga | |
2016-10-07 | Merge pull request #2024 from JamePeng/update-boss-code | bunnei | |
Update the stub code of BOSS | |||
2016-10-02 | Update the stub code of BOSS | JamePeng | |
2016-09-29 | Common: Remove dangerous Vec[234] array constructors | Yuri Kunde Schlesner | |
They're not currently used, and it's easy to accidentally pass a single pointer argument to them, causing an out-of-bounds read. | |||
2016-09-21 | Remove special rules for Windows.h and library includes | Yuri Kunde Schlesner | |
2016-09-21 | Use negative priorities to avoid special-casing the self-include | Yuri Kunde Schlesner | |
2016-09-21 | Remove empty newlines in #include blocks. | Emmanuel Gil Peyrot | |
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation. | |||
2016-09-18 | Manually tweak source formatting and then re-run clang-format | Yuri Kunde Schlesner | |
2016-09-18 | Sources: Run clang-format on everything. | Emmanuel Gil Peyrot | |
2016-09-15 | microprofile: Double buffer size to 16MB. | bunnei | |