| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-04-20 | Merge pull request #366 from lioncash/vec | bunnei | |
| vector_math: Remove AsArray() and Write() functions from Vec[2,3,4] | |||
| 2018-04-19 | vector_math: Remove AsArray() and Write() functions from Vec[2,3,4] | Lioncash | |
| These are all unused and the Write() ones should arguably not even be in the interface. There are better ways to provide this if we ever need it (like iterators). | |||
| 2018-04-19 | common: Remove code_block.h | Lioncash | |
| We use dynarmic, so this is unued. Anything else we need will likely use Xbyak, so this header isn't necessary any more. | |||
| 2018-04-17 | bit_field: Remove is_pod check, add is_trivially_copyable_v. | bunnei | |
| 2018-04-13 | common: Port cityhash code from Citra. | bunnei | |
| 2018-04-13 | bit_field: Make all methods constexpr. | bunnei | |
| 2018-04-05 | Update fmtlib to fix msvc warnings | James Rowe | |
| Additionally, when updating fmtlib, there was a change in fmtlib broke how the old logging macro was overloaded, so this works around that by just naming the fmtlib macro impl something different | |||
| 2018-04-03 | logging: Change FmtLogMessage to use variadic template instead of FMT_VARIADIC | Daniel Lim Wee Soong | |
| Due to premature merging of #262 I think the build may be failing right now. Should merge this ASAP to fix it. | |||
| 2018-04-02 | Merge pull request #262 from daniellimws/fmtlib-macros | bunnei | |
| Logging: Add fmtlib-based macros | |||
| 2018-04-02 | Merge pull request #276 from N00byKing/acctoyuzu | bunnei | |
| Change Telemetry Names to yuzu and remove links to citra | |||
| 2018-04-03 | common: fix swap functions on Bitrig and OpenBSD | Daniel Lim Wee Soong | |
| swap{16,32,64} are defined as macros on the two, but client code tries to invoke them as Common::swap{16,32,64}, which naturally doesn't work. This hack redefines the macros as inline functions in the Common namespace: the bodies of the functions are the same as the original macros, but relying on OS-specific implementation details like this is of course brittle. | |||
| 2018-03-29 | service: Add NFP module interface. | bunnei | |
| service: Initialize NFP service. Log: Add NFP service as a log subtype. | |||
| 2018-03-27 | telemetry.h: Reword comment from citra to yuzu | N00byKing | |
| 2018-03-26 | log.h: Change comment from citra to yuzu | N00byKing | |
| 2018-03-26 | file_util.h: Update Comment from citra to yuzu | N00byKing | |
| 2018-03-26 | cpu_detect.cpp: Change comment from citra to yuzu | N00byKing | |
| 2018-03-23 | Service/SSL: add ssl service | mailwl | |
| 2018-03-22 | Remove dependency chrono | Daniel Lim Wee Soong | |
| Earlier chrono was included but after some code changed it was no longer needed Forgot to remove it so I'm removing it now | |||
| 2018-03-22 | Logging: Create logging macros based on fmtlib | Daniel Lim Wee Soong | |
| Add a new set of logging macros based on fmtlib Similar but not exactly the same as https://github.com/citra-emu/citra/pull/3533 Citra currently uses a different version of fmt, which does not support FMT_VARIADIC so make_args is used instead. On the other hand, yuzu uses fmt 4.1.0 which doesn't have make_args yet so FMT_VARIADIC is used. | |||
| 2018-03-22 | Service/spl: add module and services | mailwl | |
| 2018-03-21 | CMake: Set EMU_ARCH_BITS in CMakeLists.txt | N00byKing | |
| 2018-03-20 | Service: add fatal:u, fatal:p services | mailwl | |
| 2018-02-20 | Merge pull request #206 from mailwl/aoc-listaddoncontent | bunnei | |
| Service/AOC: stub ListAddOnContent function | |||
| 2018-02-20 | Service/AOC: stub ListAddOnContent function | mailwl | |
| 2018-02-19 | logging: Add category for Friend service. | bunnei | |
| 2018-02-14 | log: Add logging category for NS services. | bunnei | |
| 2018-02-04 | logger: Add Time service logging category. | bunnei | |
| 2018-02-04 | logger: Add SET service logging category. | bunnei | |
| 2018-02-04 | logger: Add PCTL service logging category. | bunnei | |
| 2018-02-04 | logger: Add LM service logging category. | bunnei | |
| 2018-02-04 | logger: Add APM service logging category. | bunnei | |
| 2018-02-04 | logger: Add NIFM service logging category. | bunnei | |
| 2018-02-04 | logger: Add VI service logging category. | bunnei | |
| 2018-02-04 | logger: Add AM service logging category. | bunnei | |
| 2018-02-04 | logger: Add "account" service logging category. | bunnei | |
| 2018-01-24 | audout:u OpenAudioOut and IAudioOut (#138) | st4rk | |
| * Updated the audout:u and IAudioOut, now it might work with RetroArch without trigger an assert, however it's not the ideal implementation * Updated the audout:u and IAudioOut, now it might work with RetroArch without trigger an assert, however it's not the ideal implementation * audout:u OpenAudioOut implementation and IAudioOut cmd 1,2,3,4,5 implementation * using an enum for audio_out_state as well as changing its initialize to member initializer list * Minor fixes, added Service_Audio for LOG_*, changed PcmFormat enum to EnumClass * Minor fixes, added Service_Audio for LOG_*, changed PcmFormat enum to EnumClass * added missing Audio loggin subclass, minor fixes, clang comment breakline * Solving backend logging conflict * minor fix * Fixed duplicated Service NVDRV in backend.cpp, my bad | |||
| 2018-01-23 | logging: add missing NVDRV subclass to macro list | Rozlette | |
| 2018-01-21 | Added nvmemp, Added /dev/nvhost-ctrl, SetClientPID now stores pid (#114) | David | |
| * Added nvmemp, Added /dev/nvhost-ctrl, SetClientPID now stores pid * used clang-format-3.9 instead * lowercase pid * Moved nvmemp handlers to cpp * Removed unnecessary logging for NvOsGetConfigU32. Cleaned up log and changed to LOG_DEBUG * using std::arrays instead of c arrays * nvhost get config now uses std::array completely * added pid logging back * updated cmakelist * missing includes * added array, removed memcpy * clang-format6.0 | |||
| 2018-01-21 | Fix spelling error in CMakeLists | Matthew Brener | |
| Minor spelling error of its --> it's | |||
| 2018-01-20 | Format: Run the new clang format on everything | James Rowe | |
| 2018-01-18 | Merge pull request #84 from lioncash/cmake | bunnei | |
| CMakeLists: Derive the source directory grouping from targets themselves | |||
| 2018-01-17 | CMakeLists: Derive the source directory grouping from targets themselves | Lioncash | |
| Removes the need to store to separate SRC and HEADER variables, and then construct the target in most cases. | |||
| 2018-01-17 | telemetry: Silence initialization order warnings | Lioncash | |
| 2018-01-17 | loggin: Add IPC logging category. | bunnei | |
| 2018-01-13 | Minor cleanup | MerryMage | |
| 2018-01-12 | Removing unused settings and yuzu rebranding | James Rowe | |
| 2018-01-08 | fix macos build | MerryMage | |
| 2018-01-08 | CoreTiming: Reworked CoreTiming (cherry-picked from Citra #3119) | B3n30 | |
| * CoreTiming: New CoreTiming; Add Test for CoreTiming | |||
| 2017-10-23 | logging: Rename category "Core_ARM11" to "Core_ARM". | bunnei | |
| 2017-10-15 | core: Refactor MakeMagic usage and remove dead code. | bunnei | |
