summaryrefslogtreecommitdiff
path: root/src/common
AgeCommit message (Collapse)Author
2018-04-02Merge pull request #262 from daniellimws/fmtlib-macrosbunnei
Logging: Add fmtlib-based macros
2018-04-02Merge pull request #276 from N00byKing/acctoyuzubunnei
Change Telemetry Names to yuzu and remove links to citra
2018-04-03common: fix swap functions on Bitrig and OpenBSDDaniel 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-29service: Add NFP module interface.bunnei
service: Initialize NFP service. Log: Add NFP service as a log subtype.
2018-03-27telemetry.h: Reword comment from citra to yuzuN00byKing
2018-03-26log.h: Change comment from citra to yuzuN00byKing
2018-03-26file_util.h: Update Comment from citra to yuzuN00byKing
2018-03-26cpu_detect.cpp: Change comment from citra to yuzuN00byKing
2018-03-23Service/SSL: add ssl servicemailwl
2018-03-22Remove dependency chronoDaniel 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-22Logging: Create logging macros based on fmtlibDaniel 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-22Service/spl: add module and servicesmailwl
2018-03-21CMake: Set EMU_ARCH_BITS in CMakeLists.txtN00byKing
2018-03-20Service: add fatal:u, fatal:p servicesmailwl
2018-02-20Merge pull request #206 from mailwl/aoc-listaddoncontentbunnei
Service/AOC: stub ListAddOnContent function
2018-02-20Service/AOC: stub ListAddOnContent functionmailwl
2018-02-19logging: Add category for Friend service.bunnei
2018-02-14log: Add logging category for NS services.bunnei
2018-02-04logger: Add Time service logging category.bunnei
2018-02-04logger: Add SET service logging category.bunnei
2018-02-04logger: Add PCTL service logging category.bunnei
2018-02-04logger: Add LM service logging category.bunnei
2018-02-04logger: Add APM service logging category.bunnei
2018-02-04logger: Add NIFM service logging category.bunnei
2018-02-04logger: Add VI service logging category.bunnei
2018-02-04logger: Add AM service logging category.bunnei
2018-02-04logger: Add "account" service logging category.bunnei
2018-01-24audout: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-23logging: add missing NVDRV subclass to macro listRozlette
2018-01-21Added 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-21Fix spelling error in CMakeListsMatthew Brener
Minor spelling error of its --> it's
2018-01-20Format: Run the new clang format on everythingJames Rowe
2018-01-18Merge pull request #84 from lioncash/cmakebunnei
CMakeLists: Derive the source directory grouping from targets themselves
2018-01-17CMakeLists: Derive the source directory grouping from targets themselvesLioncash
Removes the need to store to separate SRC and HEADER variables, and then construct the target in most cases.
2018-01-17telemetry: Silence initialization order warningsLioncash
2018-01-17loggin: Add IPC logging category.bunnei
2018-01-13Minor cleanupMerryMage
2018-01-12Removing unused settings and yuzu rebrandingJames Rowe
2018-01-08fix macos buildMerryMage
2018-01-08CoreTiming: Reworked CoreTiming (cherry-picked from Citra #3119)B3n30
* CoreTiming: New CoreTiming; Add Test for CoreTiming
2017-10-23logging: Rename category "Core_ARM11" to "Core_ARM".bunnei
2017-10-15core: Refactor MakeMagic usage and remove dead code.bunnei
2017-10-14hle: Initial implementation of NX service framework and IPC.bunnei
2017-10-10hle: Remove a large amount of 3ds-specific service code.bunnei
2017-10-09Merge remote-tracking branch 'upstream/master' into nxbunnei
# Conflicts: # src/core/CMakeLists.txt # src/core/arm/dynarmic/arm_dynarmic.cpp # src/core/arm/dyncom/arm_dyncom.cpp # src/core/hle/kernel/process.cpp # src/core/hle/kernel/thread.cpp # src/core/hle/kernel/thread.h # src/core/hle/kernel/vm_manager.cpp # src/core/loader/3dsx.cpp # src/core/loader/elf.cpp # src/core/loader/ncch.cpp # src/core/memory.cpp # src/core/memory.h # src/core/memory_setup.h
2017-09-30arm: Use 64-bit addressing in a bunch of places.bunnei
2017-09-30Fixed type conversion ambiguityHuw Pascoe
2017-09-27Disable unary operator- on Math::Vec2/Vec3/Vec4 for unsigned types.Subv
It is unlikely we will ever use this without first doing a Cast to a signed type. Fixes 9 "unary minus operator applied to unsigned type, result still unsigned" warnings on MSVC2017.3
2017-08-09Merge pull request #2822 from wwylele/sw_lighting-2Weiyi Wang
Implement fragment lighting in the sw renderer (take 2)
2017-08-03common: Add build timestamp to scm_rev.bunnei