| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | | | | bootmanager: Add a check whether loading is complete | 2020-12-18 | 2 | -0/+6 | ||
| | | | | | | ||||||
| | * | | | | applets/web: Implement the default web browser applet frontend | 2020-12-18 | 3 | -1/+24 | ||
| | | | | | | ||||||
| | * | | | | applets/web: Implement the offline browser applet backend | 2020-12-18 | 2 | -13/+143 | ||
| | | | | | | ||||||
| | * | | | | applets/web: Initial implementation of the web browser applet | 2020-12-18 | 3 | -2/+428 | ||
| | | | | | | ||||||
| | * | | | | applets: Remove the previous web browser applet implementation | 2020-12-18 | 12 | -1039/+40 | ||
| | | | | | | ||||||
| * | | | | | Merge pull request #5131 from bunnei/scheduler-rewrite | 2020-12-20 | 41 | -1872/+2216 | ||
| |\ \ \ \ \ | | | | | | | | | | | | | Rewrite Kernel scheduler based on Atmosphere | |||||
| | * | | | | | hle: kernel: Process: Various style fixes based on code review feedback. | 2020-12-06 | 1 | -2/+2 | ||
| | | | | | | | ||||||
| | * | | | | | core: cpu_manager: Fix a typo in PreemptSingleCore, which broke many games. | 2020-12-06 | 1 | -21/+26 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | - We were reload'ing the old current scheduler, which may have changed. | |||||
| | * | | | | | hle: kernel: Thread: Various style fixes based on code review feedback. | 2020-12-06 | 1 | -22/+25 | ||
| | | | | | | | ||||||
| | * | | | | | hle: kernel: KScopedSchedulerLockAndSleep: Various style fixes based on code ↵ | 2020-12-06 | 1 | -6/+6 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | review feedback. | |||||
| | * | | | | | hle: kernel: KScopedLock: Various style fixes based on code review feedback. | 2020-12-06 | 1 | -6/+8 | ||
| | | | | | | | ||||||
| | * | | | | | hle: kernel: KAbstractSchedulerLock: Various style fixes based on code ↵ | 2020-12-06 | 1 | -9/+7 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | review feedback. | |||||
| | * | | | | | hle: kernel: KScheduler: Various style fixes based on code review feedback. | 2020-12-06 | 2 | -50/+41 | ||
| | | | | | | | ||||||
| | * | | | | | hle: kernel: KPriorityQueue: Various style fixes based on code review feedback. | 2020-12-06 | 1 | -29/+36 | ||
| | | | | | | | ||||||
| | * | | | | | hle: kernel: KAffinityMask: Various style fixes based on code review feedback. | 2020-12-06 | 1 | -17/+13 | ||
| | | | | | | | ||||||
| | * | | | | | hle: kernel: GlobalSchedulerContext: Various style fixes based on code ↵ | 2020-12-06 | 2 | -5/+10 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | review feedback. | |||||
| | * | | | | | common: BitSet: Various style fixes based on code review feedback. | 2020-12-06 | 1 | -23/+22 | ||
| | | | | | | | ||||||
| | * | | | | | hle: kernel: Use C++ style comments in KScheduler, etc. | 2020-12-06 | 4 | -152/+136 | ||
| | | | | | | | ||||||
| | * | | | | | kernel: KScopedSchedulerLockAndSleep: Remove unused ctor. | 2020-12-06 | 1 | -13/+7 | ||
| | | | | | | | ||||||
| | * | | | | | kernel: time_manager: Add missing lock guards. | 2020-12-06 | 1 | -3/+10 | ||
| | | | | | | | ||||||
| | * | | | | | hle: kernel: Migrate to KScopedSchedulerLock. | 2020-12-06 | 15 | -48/+92 | ||
| | | | | | | | ||||||
| | * | | | | | hle: kernel: Separate KScopedSchedulerLockAndSleep from k_scheduler. | 2020-12-06 | 11 | -69/+72 | ||
| | | | | | | | ||||||
| | * | | | | | hle: kernel: Separate KScheduler from GlobalSchedulerContext class. | 2020-12-06 | 9 | -520/+140 | ||
| | | | | | | | ||||||
| | * | | | | | hle: kernel: Rewrite scheduler implementation based on Mesopshere. | 2020-12-06 | 26 | -1223/+1215 | ||
| | | | | | | | ||||||
| | * | | | | | hle: kernel: physical_core: Clear exclusive state after each run. | 2020-12-06 | 3 | -0/+7 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | - This is closer to pre-multicore behavior, and works a bit better. | |||||
| | * | | | | | hle: kernel: Port KAbstractSchedulerLock from Mesosphere. | 2020-12-06 | 2 | -0/+77 | ||
| | | | | | | | ||||||
| | * | | | | | hle: kernel: svc: Remove reschedule on svcBreak. | 2020-12-06 | 1 | -5/+0 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | - This breaks things, and is unnecessary, since emulation will be done at this point. | |||||
| | * | | | | | hle: kernel: process: Add schedule count tracking, to be used for yield impl. | 2020-12-06 | 1 | -0/+13 | ||
| | | | | | | | ||||||
| | * | | | | | hle: kernel: svc: Remove unnecessary hack in svcSleep. | 2020-12-06 | 1 | -7/+0 | ||
| | | | | | | | ||||||
| | * | | | | | common: Port KPriorityQueue from Mesosphere. | 2020-12-06 | 2 | -0/+444 | ||
| | | | | | | | ||||||
| | * | | | | | common: Port BitSet from Mesosphere. | 2020-12-06 | 2 | -0/+101 | ||
| | | | | | | | ||||||
| | * | | | | | hle: kernel: Port KAffinityMask from Mesosphere. | 2020-12-06 | 7 | -16/+80 | ||
| | | | | | | | ||||||
| * | | | | | | Merge pull request #5201 from ameerj/bufferq-refactor | 2020-12-20 | 3 | -70/+63 | ||
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | vi/buffer_queue: Buffer queue management refactor | |||||
| | * | | | | | | buffer_queue: better use of std::array | 2020-12-18 | 1 | -59/+46 | ||
| | | | | | | | | ||||||
| | * | | | | | | Overwrite slots instead of queuing them, add disconnect signal | 2020-12-17 | 3 | -27/+33 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix for Katana Zero and Yoshi's Crafted World | |||||
| * | | | | | | | yuzu: Remove gdbstub configuration | 2020-12-19 | 9 | -110/+7 | ||
| | |_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | The gdbstub itself was removed with https://github.com/yuzu-emu/yuzu/pull/5028. This PR just removes the remaining gdb configuration code from the emulator and the UI. | |||||
| * | | | | | | system_archive: Add + and - buttons to the Nintendo Extended OSS font | 2020-12-18 | 2 | -315/+343 | ||
| | | | | | | | ||||||
| * | | | | | | system_archive: Update Nintendo Extended OSS font | 2020-12-17 | 2 | -182/+347 | ||
| |/ / / / / | | | | | | | | | | | | | | | | Co-authored-by: Its-Rei <kupfel@gmail.com> | |||||
| * | | | | | Merge pull request #5190 from Morph1984/validate_device_handle | 2020-12-15 | 2 | -0/+45 | ||
| |\ \ \ \ \ | | | | | | | | | | | | | controllers/npad: Validate device handles before use | |||||
| | * | | | | | controllers/npad: Validate device handles before use | 2020-12-12 | 2 | -0/+45 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | Some games such as NEKOPARA Vol. 3 send invalid device handles when calling InitializeVibrationDevice. Introduce a check to validate the device handle before use. | |||||
| * | | | | | | Merge pull request #5119 from Morph1984/fs-opendatastoragewithprogramindex | 2020-12-15 | 11 | -14/+150 | ||
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | fsp_srv: Implement OpenDataStorageWithProgramIndex | |||||
| | * | | | | | | fsp_srv: Implement OpenDataStorageWithProgramIndex | 2020-12-08 | 6 | -1/+83 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Used by RollerCoaster Tycoon 3: Complete Edition | |||||
| | * | | | | | | file_sys: Consolidate common Title ID operations | 2020-12-08 | 5 | -13/+67 | ||
| | | | | | | | | ||||||
| * | | | | | | | Merge pull request #5157 from lioncash/array-dirty | 2020-12-15 | 1 | -34/+33 | ||
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | maxwell_3d: Remove unused dirty_pointer array | |||||
| | * | | | | | | | maxwell_3d: Move member variables to end of class | 2020-12-06 | 1 | -31/+32 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Follows our established coding style. | |||||
| | * | | | | | | | maxwell_3d: Resolve -Wdocumentation warning | 2020-12-06 | 1 | -1/+1 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removes a documentation comment for a non-existent member. | |||||
| | * | | | | | | | maxwell_3d: Remove unused dirty_pointer array | 2020-12-06 | 1 | -2/+0 | ||
| | | |_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | This is unused and removing it shrinks the structure by 3584 bytes. | |||||
| * | | | | | | | Merge pull request #5168 from Morph1984/aoc-PurchaseEventManager | 2020-12-14 | 2 | -2/+76 | ||
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | aoc_u: Stub IPurchaseEventManager and its service commands | |||||
| | * | | | | | | | IPurchaseEventManager: Implement GetPurchasedEventReadableHandle | 2020-12-08 | 1 | -1/+14 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Used by Pokémon Café Mix - Used by DOOM: Eternal | |||||
| | * | | | | | | | IPurchaseEventManager: Stub Set(Default)DeliveryTarget | 2020-12-08 | 1 | -2/+27 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Used by Pokémon Café Mix - Used by DOOM: Eternal | |||||