Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-04-15 | applets/swkbd: Implement the Default Software Keyboard frontend | Morph | |
2021-04-15 | applets/swkbd: Implement the Normal and Inline Software Keyboard Applet | Morph | |
2021-04-15 | ILibraryAppletCreator: Implement CreateHandleStorage | Morph | |
Used by Monster Hunter Generations Ultimate | |||
2021-04-15 | hle_ipc: Add helper functions to get copy/move handles | Morph | |
2021-04-15 | ILibraryAppletAccessor: Demote from ERROR to DEBUG for null storage logs | Morph | |
Avoids unnecessary console spam when the inline software keyboard is used. | |||
2021-04-15 | applets: Pass in the LibraryAppletMode each applet's constructor | Morph | |
2021-04-15 | applets: Remove the previous software keyboard applet implementation | Morph | |
2021-04-14 | Merge pull request #6199 from lioncash/log-ns | bunnei | |
common/log: Move Log namespace into the Common namespace | |||
2021-04-14 | log/backend: Correct order of const in copy constructor | Lioncash | |
Follows our predominant coding style. Also explicitly specifies the move constructor/assignment operator as well. | |||
2021-04-14 | common/log: Move Log namespace into the Common namespace | Lioncash | |
Forgot to move this over when I moved the rest of the source files with lacking namespaces over. | |||
2021-04-14 | Merge pull request #6196 from bunnei/asserts-setting | bunnei | |
core: settings: Add setting for debug assertions and disable by default. | |||
2021-04-14 | common: Move settings to common from core. | bunnei | |
- Removes a dependency on core and input_common from common. | |||
2021-04-14 | core: settings: Add setting for debug assertions and disable by default. | bunnei | |
- This is a developer-only setting and no longer needs to be enabled by default. - Also adds "use_auto_stub" setting to SDL frontend while we are here. - Supersedes #1340. | |||
2021-04-14 | Merge pull request #6197 from ameerj/kreslimit-cleanup | bunnei | |
k_resource_limit: Cleanup of member variables/headers | |||
2021-04-13 | Merge pull request #6195 from Morph1984/controller-applet-motion | bunnei | |
applets/controller: Hook up the "Motion" button functionality | |||
2021-04-14 | k_resource_limit: Minor cleanup of member variables/headers | ameerj | |
2021-04-13 | Merge pull request #6185 from ameerj/process-reslimit | bunnei | |
kernel/process: Replace process resource limit instance with the kernel's resource limit | |||
2021-04-13 | Merge pull request #6191 from lioncash/vdtor | bunnei | |
engine_interface: Add missing virtual destructor | |||
2021-04-13 | Merge pull request #6190 from lioncash/constfn2 | bunnei | |
vk_master_semaphore: Add missing const qualifier for IsFree() | |||
2021-04-13 | Merge pull request #6188 from lioncash/bits | bunnei | |
vk_texture_cache: Make use of bit_cast where applicable | |||
2021-04-13 | Merge pull request #6187 from lioncash/sign-conv | bunnei | |
texure_cache/util: Resolve implicit sign conversions with std::reduce | |||
2021-04-13 | applets/controller: Hook up the "Motion" button functionality | Morph | |
I forgot to hook this up during the development of the controller applet, this PR amends that. | |||
2021-04-12 | Merge pull request #6186 from lioncash/cache-erase | bunnei | |
query_cache: Make use of std::erase_if | |||
2021-04-12 | nvidia_flags: Add missing header guard | Lioncash | |
Prevents potential inclusion compilation errors. | |||
2021-04-12 | kernel/process: Replace process resource limit instance with the kernel's ↵ | ameerj | |
resource limit This commit addresses the inaccurate behavior of kernel processes creating their own resource limit, rather than utilizing the kernel's system-wide resource limit instance. | |||
2021-04-12 | k_thread: Remove [[nodiscard]] attribute from ClearWaitCancelled() | Lioncash | |
This function has a void return value, so this attribute doesn't apply to it. | |||
2021-04-12 | engine_interface: Add missing virtual destructor | Lioncash | |
Eliminates a potential bug vector related to inheritance. Plus, we should generally be specifying the destructor as virtual within purely virtual interfaces to begin with. | |||
2021-04-12 | vk_master_semaphore: Deduplicate atomic access within IsFree() | Lioncash | |
We can just reuse the already existing KnownGpuTick() to deduplicate the access. | |||
2021-04-12 | vk_master_semaphore: Add missing const qualifier for IsFree() | Lioncash | |
This member function doesn't modify class state. | |||
2021-04-12 | vk_texture_cache: Make use of Common::BitCast where applicable | Lioncash | |
Also clarify the TODO comment a little more on the lacking implementations for std::bit_cast. | |||
2021-04-12 | texure_cache/util: Resolve implicit sign conversions with std::reduce | Lioncash | |
Amends implicit sign conversions occurring with usages of std::reduce and also relocates it to its own utility function to reduce verbosity a little bit. | |||
2021-04-12 | query_cache: Make use of std::erase_if | Lioncash | |
Same behavior, but much more straightforward to read. | |||
2021-04-11 | Merge pull request #6135 from Morph1984/borderless-windowed-fullscreen | bunnei | |
configure_graphics: Add Borderless Windowed fullscreen mode | |||
2021-04-11 | Merge pull request #6181 from Joshua-Ashton/robustness_features | Rodrigo Locatti | |
vulkan_device: Enable EXT_robustness2 features | |||
2021-04-11 | Merge pull request #6182 from Joshua-Ashton/null-offset | Rodrigo Locatti | |
vk_buffer_cache: Fix offset for NULL vertex buffers | |||
2021-04-11 | Merge pull request #6170 from Morph1984/more-time-fixes | bunnei | |
service: time: Setup the network clock with the local clock context | |||
2021-04-11 | vk_buffer_cache: Fix offset for NULL vertex buffers | Joshua Ashton | |
The Vulkan spec states: If an element of pBuffers is VK_NULL_HANDLE, then the corresponding element of pOffsets must be zero. https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/vkCmdBindVertexBuffers2EXT.html#VUID-vkCmdBindVertexBuffers2EXT-pBuffers-04112 | |||
2021-04-11 | vulkan_device: Enable EXT_robustness2 features | Joshua Ashton | |
When this was being made mandatory, these enablement of these features was removed, but this is still needed. Fixes: 757fd1e91716 ("vulkan_device: Require VK_EXT_robustness2") | |||
2021-04-11 | renderer_vulkan: Check return value of AcquireNextImage | Joshua Ashton | |
We can get into a really bad state by ignoring this leading to device loss and using incorrect resources. | |||
2021-04-10 | Merge pull request #6167 from Morph1984/time-fix | bunnei | |
service: time: Fix CalculateStandardUserSystemClockDifferenceByUser | |||
2021-04-10 | Merge pull request #6112 from ogniK5377/pctl | bunnei | |
pctl: Rework how pctl works to be more accurate | |||
2021-04-10 | Merge pull request #6172 from degasus/cmake_opus | bunnei | |
externals: Search for shared opus installation. | |||
2021-04-10 | Merge pull request #6099 from bunnei/derive-mem | bunnei | |
Kernel Rework: Derive memory regions from board layout. | |||
2021-04-09 | Merge pull request #6171 from german77/services | bunnei | |
service: Update service function tables and use proper names | |||
2021-04-09 | Merge pull request #6156 from lioncash/lock-discard | bunnei | |
kernel: Mark lock helper classes as [[nodiscard]] | |||
2021-04-09 | Merge pull request #6113 from german77/playhistory | bunnei | |
Friend: Stub GetPlayHistoryRegistrationKey | |||
2021-04-09 | Merge pull request #6158 from german77/hidServiceTables | bunnei | |
hid: Update service function tables | |||
2021-04-09 | Merge pull request #6162 from degasus/no_spin_loops | bunnei | |
video_core: Avoid spin loops. | |||
2021-04-09 | ns: Update to 12.x | Morph | |
2021-04-09 | aoc_u: Update to 12.x | Morph | |