summaryrefslogtreecommitdiff
path: root/src/common (follow)
Commit message (Collapse)AuthorAgeFilesLines
* logger: Add AM service logging category.Gravatar bunnei2018-02-042-0/+2
|
* logger: Add "account" service logging category.Gravatar bunnei2018-02-042-0/+2
|
* audout:u OpenAudioOut and IAudioOut (#138)Gravatar st4rk2018-01-242-0/+2
| | | | | | | | | | | | | | | | | | | | | | * 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
* logging: add missing NVDRV subclass to macro listGravatar Rozlette2018-01-231-0/+1
|
* Added nvmemp, Added /dev/nvhost-ctrl, SetClientPID now stores pid (#114)Gravatar David2018-01-211-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | * 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
* Fix spelling error in CMakeListsGravatar Matthew Brener2018-01-211-1/+1
| | | Minor spelling error of its --> it's
* Format: Run the new clang format on everythingGravatar James Rowe2018-01-2019-43/+87
|
* Merge pull request #84 from lioncash/cmakeGravatar bunnei2018-01-181-63/+57
|\ | | | | CMakeLists: Derive the source directory grouping from targets themselves
| * CMakeLists: Derive the source directory grouping from targets themselvesGravatar Lioncash2018-01-171-63/+57
| | | | | | | | | | Removes the need to store to separate SRC and HEADER variables, and then construct the target in most cases.
* | telemetry: Silence initialization order warningsGravatar Lioncash2018-01-171-2/+2
|/
* loggin: Add IPC logging category.Gravatar bunnei2018-01-172-1/+3
|
* Minor cleanupGravatar MerryMage2018-01-131-1/+1
|
* Removing unused settings and yuzu rebrandingGravatar James Rowe2018-01-121-5/+1
|
* fix macos buildGravatar MerryMage2018-01-081-1/+1
|
* CoreTiming: Reworked CoreTiming (cherry-picked from Citra #3119)Gravatar B3n302018-01-082-0/+123
| | | | * CoreTiming: New CoreTiming; Add Test for CoreTiming
* logging: Rename category "Core_ARM11" to "Core_ARM".Gravatar bunnei2017-10-232-2/+2
|
* core: Refactor MakeMagic usage and remove dead code.Gravatar bunnei2017-10-151-0/+8
|
* hle: Initial implementation of NX service framework and IPC.Gravatar bunnei2017-10-142-2/+2
|
* hle: Remove a large amount of 3ds-specific service code.Gravatar bunnei2017-10-102-42/+0
|
* Merge remote-tracking branch 'upstream/master' into nxGravatar bunnei2017-10-097-18/+27
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # 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
| * Fixed type conversion ambiguityGravatar Huw Pascoe2017-09-303-11/+5
| |
| * Disable unary operator- on Math::Vec2/Vec3/Vec4 for unsigned types.Gravatar Subv2017-09-271-4/+8
| | | | | | | | | | 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
| * Merge pull request #2822 from wwylele/sw_lighting-2Gravatar Weiyi Wang2017-08-092-4/+8
| |\ | | | | | | Implement fragment lighting in the sw renderer (take 2)
| | * vector_math: remove dead template parameterGravatar wwylele2017-07-111-1/+1
| | |
| | * vector_math: remove broken SFINAE stuffGravatar wwylele2017-07-111-3/+2
| | | | | | | | | | | | this was originally added to eliminate warnings on MSVC, but it doesn't work for custom types.
| | * SwRasterizer: Flip the vertex quaternions before clipping (if necessary).Gravatar Subv2017-07-111-1/+1
| | |
| | * SwRasterizer: Corrected the light LUT lookups.Gravatar Subv2017-07-111-0/+5
| | |
| * | common: Add build timestamp to scm_rev.Gravatar bunnei2017-08-032-0/+3
| | |
* | | arm: Use 64-bit addressing in a bunch of places.Gravatar bunnei2017-09-301-2/+2
|/ /
* / logging: Add WebService as a log cateogry.Gravatar bunnei2017-07-102-1/+3
|/
* Implement basic virtual Room support based on enet (#2803)Gravatar B3n302017-07-072-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Added support for network with ENet lib, connecting is possible, but data can't be sent, yet. * fixup! Added support for network with ENet lib, * fixup! CLang * fixup! Added support for network with ENet lib, * fixup! Added support for network with ENet lib, * fixup! Clang format * More fixups! * Moved ENetHost* and ENetPeer* into pimpl classes * fixup! Moved ENetHost* and ENetPeer* into pimpl classes * fixup! Clang again * fixup! Moved ENetHost* and ENetPeer* into pimpl classes * fixup! Moved ENetHost* and ENetPeer* into pimpl classes * fixup! Moved ENetHost* and ENetPeer* into pimpl classes
* Remove unnecessary WIN32_LEAN_AND_MEAN macro definitionGravatar Kloen2017-06-301-1/+0
|
* Remove unused import in break_points.cpp (#2763)Gravatar Kloen Lansfiel2017-06-081-1/+0
|
* CMake: Create INTERFACE targets for microprofile and nihstroGravatar Yuri Kunde Schlesner2017-05-271-1/+1
|
* CMake: Use IMPORTED target for BoostGravatar Yuri Kunde Schlesner2017-05-271-0/+1
|
* CMake: Correct inter-module dependencies and library visibilityGravatar Yuri Kunde Schlesner2017-05-271-1/+1
| | | | | | | | | | Modules didn't correctly define their dependencies before, which relied on the frontends implicitly including every module for linking to succeed. Also changed every target_link_libraries call to specify visibility of dependencies to avoid leaking definitions to dependents when not necessary.
* Common: Fix some out-of-style includesGravatar Yuri Kunde Schlesner2017-05-273-5/+5
|
* Move framebuffer_layout from Common to CoreGravatar Yuri Kunde Schlesner2017-05-273-214/+0
| | | | | | This removes a dependency inversion between core and common. It's also the proper place for the file since it makes screen layout decisions specific to the 3DS.
* Merge pull request #2716 from yuriks/decentralized-resultGravatar bunnei2017-05-261-23/+42
|\ | | | | Decentralize ResultCode
| * Common: Clean up meta-template logic in BitFieldGravatar Yuri Kunde Schlesner2017-05-241-3/+3
| |
| * Make BitField and ResultCode constexpr-initializableGravatar Yuri Kunde Schlesner2017-05-241-23/+42
| |
* | Merge pull request #2697 from wwylele/proctexGravatar Yuri Kunde Schlesner2017-05-241-0/+10
|\ \ | | | | | | Implemented Procedural Texture (Texture Unit 3)
| * | pica/swrasterizer: implement procedural textureGravatar wwylele2017-05-201-0/+10
| |/
* / common: Add a generic interface for logging telemetry fields.Gravatar bunnei2017-05-243-0/+238
|/
* Remove unused symbols codeGravatar Yuri Kunde Schlesner2017-05-073-78/+0
|
* Merge pull request #2512 from SonofUgly/custom-layoutGravatar bunnei2017-03-212-0/+27
|\ | | | | Add custom layout settings.
| * Add custom layout settings.Gravatar SonofUgly2017-02-232-0/+27
| |
* | Merge pull request #2497 from wwylele/input-2Gravatar bunnei2017-03-175-0/+164
|\ \ | | | | | | Refactor input emulation & add SDL gamepad support
| * | Input: add device and factory templateGravatar wwylele2017-03-012-0/+2
| | |
| * | Common: add ParamPackageGravatar wwylele2017-03-013-0/+162
| | |