| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | | core: hle: ldn: Error out on call to Initialization. | 2021-02-27 | 1 | -1/+1 | ||
| | |/ | | | | | | | - Since we do not emulate LDN, returning an error here makes more sense. | |||||
| * | | Merge pull request #5276 from german77/gestures | 2021-02-27 | 2 | -11/+240 | ||
| |\ \ | |/ |/| | HID: Implement gestures | |||||
| | * | Implements touch, pan, pinch and rotation gestures | 2021-02-27 | 2 | -11/+240 | ||
| | | | ||||||
| * | | Merge pull request #5953 from bunnei/memory-refactor-1 | 2021-02-27 | 52 | -1211/+1433 | ||
| |\ \ | | | | | | | Kernel Rework: Memory updates and refactoring (Part 1) | |||||
| | * | | hle: kernel: Migrate PageHeap/PageTable to KPageHeap/KPageTable. | 2021-02-18 | 23 | -146/+130 | ||
| | | | | ||||||
| | * | | hle: kernel: Migrate MemoryManager to KMemoryManager. | 2021-02-18 | 8 | -47/+48 | ||
| | | | | ||||||
| | * | | hle: kernel: Migrate PageLinkedList to KPageLinkedList. | 2021-02-18 | 8 | -38/+41 | ||
| | | | | ||||||
| | * | | hle: kernel: Migrate to KMemoryBlock, KMemoryBlockManager, and others. | 2021-02-18 | 18 | -476/+479 | ||
| | | | | ||||||
| | * | | hle: kernel: Migrate SlabHeap to KSlabHeap. | 2021-02-18 | 4 | -22/+21 | ||
| | | | | ||||||
| | * | | hle: kernel: Migrate MemoryLayout to KMemoryLayout. | 2021-02-18 | 5 | -31/+30 | ||
| | | | | ||||||
| | * | | hle: kernel: Migrate AddressSpaceInfo to KAddressSpaceInfo. | 2021-02-18 | 4 | -59/+54 | ||
| | | | | ||||||
| | * | | hle: kernel: memory_manager: Rename AllocateContinuous to AllocateContinuous. | 2021-02-18 | 2 | -4/+28 | ||
| | | | | ||||||
| | * | | hle: kernel: KSystemControl does not belong in Memory namespace. | 2021-02-18 | 7 | -31/+38 | ||
| | | | | ||||||
| | * | | hle: kernel: memory: PageHeap: Migrate to KPageBitmap class. | 2021-02-18 | 4 | -197/+23 | ||
| | | | | ||||||
| | * | | hle: kernel: Add KPageBitmap class. | 2021-02-18 | 2 | -0/+280 | ||
| | | | | ||||||
| | * | | hle: kernel: system_control: Add function GenerateRandomU64. | 2021-02-18 | 2 | -3/+5 | ||
| | | | | ||||||
| | * | | hle: kernel: Add KSpinLock implementation. | 2021-02-18 | 3 | -0/+89 | ||
| | | | | ||||||
| | * | | core: memory: Add templated GetPointer methods. | 2021-02-18 | 1 | -0/+10 | ||
| | | | | ||||||
| | * | | hle: kernel: Rename SharedMemory to KSharedMemory. | 2021-02-18 | 13 | -54/+54 | ||
| | | | | ||||||
| * | | | Merge pull request #5944 from Morph1984/gc-vibrations | 2021-02-26 | 2 | -3/+130 | ||
| |\ \ \ | | | | | | | | | hid: Implement GameCube Controller Vibrations | |||||
| | * | | | hid: Implement GameCube Controller Vibrations | 2021-02-21 | 2 | -3/+130 | ||
| | | | | | | | | | | | | | | | | | Implements both SendVibrationGcErmCommand and GetActualVibrationGcErmCommand, and modifies GetVibrationDeviceInfo to account for additional controllers. | |||||
| * | | | | acc: Stub GetNintendoAccountUserResourceCacheForApplication | 2021-02-21 | 1 | -1/+17 | ||
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | This command returns a Nintendo Account ID and writes 2 output buffers. The first output buffer is a NasUserBaseForApplication and the second output buffer is currently empty. Used by: - Pokken Tournament DX - Super Smash Bros. Ultimate - Super Nintendo Entertainment System - Nintendo Switch Online - Mario Kart 8 Deluxe | |||||
| * / / | kernel: Fix resource release exception on exit | 2021-02-20 | 4 | -2/+16 | ||
| |/ / | | | | | | | | | After rewriting the resource limit, objects releasing reserved resources require a live kernel instance. This commit fixes exceptions that occur due to the kernel being destroyed before some objects released their resources, allowing for a graceful exit. | |||||
| * | | Merge pull request #4973 from ameerj/nvdec-opt | 2021-02-18 | 2 | -3/+7 | ||
| |\ \ | | | | | | | nvdec: Reuse allocated buffers and general cleanup | |||||
| | * | | Address PR feedback | 2021-02-13 | 2 | -4/+2 | ||
| | | | | | | | | | | | | | Co-Authored-By: LC <712067+lioncash@users.noreply.github.com> | |||||
| | * | | nvdec cleanup | 2021-02-13 | 1 | -1/+7 | ||
| | | | | ||||||
| * | | | core: core_timing_util: Optimize core timing math. | 2021-02-15 | 3 | -98/+48 | ||
| | | | | | | | | | | | | | - Avoids a lot of unnecessary 128-bit math for imperceptible accuracy. | |||||
| * | | | Merge pull request #5939 from Morph1984/web_types | 2021-02-15 | 1 | -0/+1 | ||
| |\ \ \ | | | | | | | | | core/CMakeLists: Add web_types.h | |||||
| | * | | | core/CMakeLists: Add web_types.h | 2021-02-15 | 1 | -0/+1 | ||
| | | | | | ||||||
| * | | | | Merge pull request #4940 from german77/nativeGC | 2021-02-15 | 3 | -1/+89 | ||
| |\ \ \ \ | |/ / / |/| | | | HID: Implement GC controller in game | |||||
| | * | | | hid: Implement GC controller | 2021-02-07 | 3 | -1/+89 | ||
| | | |/ | |/| | ||||||
| * | | | hle: service: ldn: IUserLocalCommunicationService: Improve the stub. | 2021-02-13 | 1 | -5/+29 | ||
| | | | | ||||||
| * | | | hle: service: ldn: IUserLocalCommunicationService: Indicate that LDN is ↵ | 2021-02-13 | 3 | -3/+19 | ||
| | | | | | | | | | | | | | | | | | | | disabled. - Fixes crash on Pokemon Sword/Shield when pressing 'Y'. | |||||
| * | | | hle: service: am: IStorageAccessor: Fix out of bounds error handling. | 2021-02-13 | 1 | -6/+7 | ||
| | |/ |/| | ||||||
| * | | kernel: More accurately reserve and release resources | 2021-02-12 | 6 | -14/+42 | ||
| | | | ||||||
| * | | kernel: KScopedReservation implementation | 2021-02-12 | 6 | -26/+152 | ||
| | | | | | | | | | This implements KScopedReservation, allowing resource limit reservations to be more HW accurate, and release upon failure without requiring too many conditionals. | |||||
| * | | kernel: Unify result codes (#5890) | 2021-02-12 | 21 | -256/+223 | ||
| | | | | | | | | | | | | | | | | | | | * kernel: Unify result codes Drop the usage of ERR_NAME convention in kernel for ResultName. Removed seperation between svc_results.h & errors.h as we mainly include both most of the time anyways. * oops * rename errors to svc_results | |||||
| * | | Merge pull request #5902 from lioncash/core-warn | 2021-02-11 | 3 | -4/+7 | ||
| |\ \ | | | | | | | core: Silence various warnings on Clang 12 | |||||
| | * | | bsd: Remove usage of optional emplace() with no arguments | 2021-02-09 | 1 | -2/+4 | ||
| | | | | | | | | | | | | | Clang 12 currently falls over in the face of this. | |||||
| | * | | am/controller: Remove [[fallthrough]] from unreachable path | 2021-02-09 | 1 | -1/+2 | ||
| | | | | | | | | | | | | | | | | Prevents warnings on clang 12. This path is reachable on other variations of the build that disable the unreachable macro. | |||||
| | * | | nfp: Correct uninitialized size being used within GetTagInfo() | 2021-02-09 | 1 | -1/+1 | ||
| | |/ | | | | | | | | | We were previously the name of the object being initialized within its own initializer, which results in uninitialized data being read. | |||||
| * | | Merge pull request #5869 from german77/mousePanning | 2021-02-11 | 1 | -2/+3 | ||
| |\ \ | | | | | | | input_common: Add mouse panning | |||||
| | * | | Add mouse panning | 2021-02-07 | 1 | -2/+3 | ||
| | | | | ||||||
| * | | | software_keyboard: Implement Finalize request command | 2021-02-10 | 1 | -0/+4 | ||
| | | | | ||||||
| * | | | core: Add -fsized-dealloction as a Clang flag | 2021-02-09 | 1 | -0/+2 | ||
| | | | | | | | | | | | | | Prevents a operator delete error when compiling with Clang 11. | |||||
| * | | | Merge pull request #5892 from german77/backup | 2021-02-08 | 1 | -1/+12 | ||
| |\ \ \ | | | | | | | | | olsc: Stub GetSaveDataBackupSetting | |||||
| | * | | | olsc: Stub GetSaveDataBackupSetting | 2021-02-07 | 1 | -1/+12 | ||
| | | | | | ||||||
| * | | | | Merge pull request #5868 from german77/HandheldFix | 2021-02-08 | 1 | -0/+1 | ||
| |\ \ \ \ | |_|_|/ |/| | | | Prevent over scheduling audio events and add motion update unschedule event | |||||
| | * | | | Prevent over scheduling audio events and terminate properly the motion ↵ | 2021-02-02 | 1 | -0/+1 | ||
| | | | | | | | | | | | | | | | | | update event | |||||
| * | | | | Merge pull request #5339 from german77/interactive | 2021-02-07 | 1 | -0/+11 | ||
| |\ \ \ \ | |_|/ / |/| | | | Settings: Make settings controller image change with controller input | |||||