summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #9389 from lioncash/emumoveGravatar liamwhite2022-12-063-14/+13
|\ | | | | emulated_console/emulated_controller: std::move ParamPackage instances where applicable
| * emulated_controller: Remove unused parameter in GetMappedDevices()Gravatar Lioncash2022-12-052-3/+2
| | | | | | | | | | This isn't used, so it can be removed to make the function a little nicer.
| * emulated_controller: Use std::move() in GetMappedDevices()Gravatar Lioncash2022-12-051-6/+6
| | | | | | | | Avoids churning allocations in a loop.
| * emulated_console: Amend cast in SetTouch()Gravatar Lioncash2022-12-051-1/+1
| | | | | | | | id is an int value, not a u32.
| * emulated_console: std::move() ParamPackages and callbacks where applicableGravatar Lioncash2022-12-051-4/+4
| |
* | Merge pull request #9386 from lioncash/initGravatar liamwhite2022-12-066-27/+25
|\ \ | | | | | | kernel: Ensure relevant class members are always initialized on construction
| * | kernel/k_shared_memory: Ensure device_memory is always initializedGravatar Lioncash2022-12-051-1/+1
| | |
| * | kernel/k_memory_block: Ensure members are always initializedGravatar Lioncash2022-12-052-22/+20
| | |
| * | kernel/physical_core: Ensure is_interrupted is always initializedGravatar Lioncash2022-12-051-1/+1
| | |
| * | kernel/thread: Ensure stack_top and argument are always initializedGravatar Lioncash2022-12-051-2/+2
| | |
| * | kernel/kernel: Ensure shutdown threads are always initializedGravatar Lioncash2022-12-051-1/+1
| | |
* | | Merge pull request #9369 from german77/mifareGravatar liamwhite2022-12-059-36/+600
|\ \ \ | |_|/ |/| | service: nfc: Implement mifare service
| * | service: nfc: Implement mifare serviceGravatar Narr the Reg2022-12-019-36/+600
| | |
* | | Merge pull request #6833 from abouvier/unbundleGravatar liamwhite2022-12-051-1/+1
|\ \ \ | |_|/ |/| | cmake: prefer system libraries
| * | cmake: prefer system librariesGravatar Alexandre Bouvier2022-12-041-1/+1
| | |
* | | Merge pull request #9381 from liamwhite/uninitGravatar Mai2022-12-041-7/+7
|\ \ \ | | | | | | | | service_thread: fix uninitialized memory usage
| * | | service_thread: fix uninitialized memory usageGravatar Liam2022-12-041-7/+7
| | | |
* | | | Merge pull request #9232 from bunnei/audio-default-threadGravatar liamwhite2022-12-043-18/+12
|\ \ \ \ | |/ / / |/| | | hle: service: audio: Use default service thread.
| * | | hle: service: audio: Use default service thread.Gravatar bunnei2022-11-113-18/+12
| | | | | | | | | | | | | | | | - This was arbitrarily added by me, and does not appear to be helpful.
* | | | Merge pull request #9273 from ameerj/per-game-profileGravatar liamwhite2022-12-041-2/+1
|\ \ \ \ | |_|/ / |/| | | Configuration: Add per-game input profiles
| * | | Configuration: Add per-game input profilesGravatar ameerj2022-11-201-2/+1
| | | |
* | | | Merge pull request #9374 from liamwhite/externalsGravatar liamwhite2022-12-041-0/+1
|\ \ \ \ | | | | | | | | | | externals: update dynarmic, SDL2
| * | | | externals: update dynarmic, SDL2Gravatar Liam2022-12-041-0/+1
| | | | |
* | | | | Merge pull request #9344 from liamwhite/nullGravatar bunnei2022-12-031-0/+2
|\ \ \ \ \ | |/ / / / |/| | | | video_core: add null backend
| * | | | video_core: add null backendGravatar Liam2022-11-281-0/+2
| | | | |
* | | | | Merge pull request #9300 from ameerj/pchGravatar liamwhite2022-12-032-0/+16
|\ \ \ \ \ | | | | | | | | | | | | CMake: Use precompiled headers to improve compile times
| * | | | | CMake: Consolidate common PCH headersGravatar ameerj2022-11-301-6/+3
| | | | | |
| * | | | | CMake: Use precompiled headersGravatar ameerj2022-11-292-0/+19
| | | | | |
* | | | | | Merge pull request #9289 from liamwhite/fruit-companyGravatar liamwhite2022-12-0317-10/+21
|\ \ \ \ \ \ | | | | | | | | | | | | | | general: fix compile for Apple Clang
| * | | | | | general: fix compile for Apple ClangGravatar Liam2022-11-2217-10/+21
| | | | | | |
* | | | | | | Merge pull request #9303 from liamwhite/new-vulkan-initGravatar Matías Locatti2022-12-021-0/+2
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Vulkan: update initialization
| * | | | | | | Vulkan: update initializationGravatar Liam2022-11-271-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: bylaws <bylaws@users.noreply.github.com>
* | | | | | | | Merge pull request #9348 from Morph1984/when-the-network-is-downGravatar liamwhite2022-12-011-7/+34
|\ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ |/| | | | | | | service: nifm: Update stubs for Submit/GetRequestState/GetResult
| * | | | | | | service: nifm: Update stubs for Submit/GetRequestState/GetResultGravatar Morph2022-11-281-7/+34
| | | | | | | |
* | | | | | | | Merge pull request #9320 from yuzu-emu/fix-audio-suspendGravatar Fernando S2022-11-301-6/+5
|\ \ \ \ \ \ \ \ | |_|_|_|/ / / / |/| | | | | | | AudioCore: Take suspend lock when stalling the running process.
| * | | | | | | core: Use atomic instead of a lock to protect is_paused.Gravatar bunnei2022-11-261-6/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - This allows us to call IsPaused() elsewhere if we are holding the suspend lock.
* | | | | | | | Merge pull request #9340 from lioncash/nvdrvGravatar liamwhite2022-11-291-26/+18
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | nvdrv: Simplify builder declarations
| * | | | | | | | nvdrv: Simplify builder declarationsGravatar Lioncash2022-11-281-26/+18
| | |_|_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We can just use auto here. If one of these ever happens to not be derived from nvdevice, then this will cause a compilation error. We can also move the devices into the collection to get rid of an unnecessary atomic reference count increment and decrement.
* | | | | | | | Merge pull request #9346 from lioncash/vtableGravatar liamwhite2022-11-291-0/+1
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | producer_listener: Add virtual destructor to IProducerListener
| * | | | | | | | producer_listener: Add virtual destructor to IProducerListenerGravatar Lioncash2022-11-281-0/+1
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Several member variables are shared_ptr's to this base class. Even though producer listeners are still unimplemented, this ensures we always have consistent deletion behavior once this ends up being used polymorphically.
* | | | | | | | Merge pull request #9345 from lioncash/fenceGravatar liamwhite2022-11-296-16/+15
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | consumer_base: Pass std::shared_ptr by const reference
| * | | | | | | | buffer_item_consumer: Pass fence by const-ref in ReleaseBuffer()Gravatar Lioncash2022-11-283-4/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This isn't directly modified. Also allows rvalues to be used with it.
| * | | | | | | | buffer_queue_consumer: std::move std::shared_ptr in Connect()Gravatar Lioncash2022-11-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Avoids an unnecessary reference count increment and decrement
| * | | | | | | | consumer_base: Pass shared_ptr by const referenceGravatar Lioncash2022-11-282-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Avoids churning atomic reference count increments and decrements.
| * | | | | | | | consumer_base: Remove redundant virtualGravatar Lioncash2022-11-281-5/+5
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | override already serves this purpose
* | | | | | | | Merge pull request #9343 from lioncash/boundsGravatar liamwhite2022-11-292-17/+31
|\ \ \ \ \ \ \ \ | |_|_|/ / / / / |/| | | | | | | syncpoint_manager: Reduce redundant bounds checks
| * | | | | | | syncpoint_manager: Mark IsSyncpointAllocated() as constGravatar Lioncash2022-11-282-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This doesn't modify class state at all.
| * | | | | | | syncpoint_manager: Reduce number of bounds checksGravatar Lioncash2022-11-281-14/+28
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | The only time we need to check bounds is on the first access.
* | | | | | | core/hid/emulated_controller: Use ranges version of transformGravatar Lioncash2022-11-281-19/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Makes the transform calls much nicer to read.
* | | | | | | common/input: Add helpers functions for creating input and output devicesGravatar Lioncash2022-11-283-19/+19
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | Avoids the redundancy of needing to explictly specify the common namespace and the type.