Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-03-23 | vcpkg: Update vcpkg to 2023.02.24 | Morph | |
2023-03-23 | Merge pull request #9971 from Morph1984/q | liamwhite | |
bounded_threadsafe_queue: Use simplified impl of bounded queue | |||
2023-03-23 | Merge pull request #9964 from liamwhite/typed-address | liamwhite | |
kernel: use KTypedAddress for addresses | |||
2023-03-23 | Merge pull request #9962 from Kelebek1/disable_srgb | Morph | |
[video_core] Disable SRGB border color conversion in samplers | |||
2023-03-22 | kernel: use KTypedAddress for addresses | Liam | |
2023-03-21 | bounded_threadsafe_queue: Refactor Pop | Morph | |
Introduces PopModes to bring waiting logic into Pop, similar to Push. | |||
2023-03-21 | bounded_threadsafe_queue: Add producer cv to avoid busy waiting | Morph | |
2023-03-21 | Merge pull request #9965 from german77/thankYouEpicBoy | bunnei | |
config: Fix controller config from resetting | |||
2023-03-21 | bounded_threadsafe_queue: Deduplicate and add PushModes | Morph | |
Adds the PushModes Try and Wait to allow producers to specify how they want to push their data to the queue if the queue is full. If the queue is full: - Try will fail to push to the queue, returning false. Try only returns true if it successfully pushes to the queue. This may result in items not being pushed into the queue. - Wait will wait until a slot is available to push to the queue, resulting in potential for deadlock if a consumer is not running. | |||
2023-03-21 | bounded_threadsafe_queue: Add TryPush | Morph | |
2023-03-21 | logging: Make use of bounded queue | Morph | |
2023-03-21 | bounded_threadsafe_queue: Use simplified impl of bounded queue | Morph | |
Provides a simplified SPSC, MPSC, and MPMC bounded queue implementation using mutexes. | |||
2023-03-19 | Merge pull request #9970 from bunnei/string-util-view | bunnei | |
common: string_util: Use std::string_view for UTF16ToUTF8/UTF8ToUTF16W. | |||
2023-03-19 | Merge pull request #9972 from liamwhite/ipc-trace | bunnei | |
kernel: fix LOG_TRACE in ipc | |||
2023-03-19 | kernel: fix LOG_TRACE in ipc | Liam | |
2023-03-18 | common: string_util: Use std::string_view for UTF16ToUTF8/UTF8ToUTF16W. | bunnei | |
2023-03-18 | Merge pull request #9966 from bunnei/bounded-polyfill | liamwhite | |
common: bounded_threadsafe_queue: Use polyfill_thread. | |||
2023-03-17 | common: bounded_threadsafe_queue: Use polyfill_thread. | bunnei | |
2023-03-17 | Merge pull request #9778 from behunin/my-box-chevy | bunnei | |
gpu_thread: Use bounded queue | |||
2023-03-17 | Merge pull request #9953 from german77/amiibo_crc | bunnei | |
service: nfp: Actually write correct crc | |||
2023-03-17 | config: Fix controller config from resetting | Narr the Reg | |
2023-03-17 | Disable SRGB border color conversion for now, to fix shadows in Xenoblade. | Kelebek1 | |
2023-03-16 | service: nfp: Replace crc function with boost equivalent | Narr the Reg | |
2023-03-15 | Merge pull request #9955 from liamwhite/color-blend-equation | liamwhite | |
vulkan: disable extendedDynamicState3ColorBlendEquation on radv | |||
2023-03-15 | Merge pull request #9931 from liamwhite/sched | liamwhite | |
vk_scheduler: split work queue waits and execution waits | |||
2023-03-15 | service: nfp: Close app area and recreate crc | Narr the Reg | |
2023-03-15 | service: nfp: Convert mii colors to v3 | Narr the Reg | |
2023-03-15 | vulkan: disable extendedDynamicState3ColorBlendEquation on radv | Liam | |
2023-03-14 | service: nfp: Actually write correct crc | Narr the Reg | |
2023-03-14 | Merge pull request #9933 from vonchenplus/texture_format | liamwhite | |
video_core: Update texture format | |||
2023-03-13 | Merge pull request #9951 from Morph1984/save | bunnei | |
configure_audio: Fix output mode setting not saving | |||
2023-03-13 | configure_audio: Fix output mode setting not saving | Morph | |
2023-03-13 | Merge pull request #9939 from german77/vibration | liamwhite | |
input_common: sdl: Only send last vibration command | |||
2023-03-13 | Merge pull request #9941 from german77/settings | liamwhite | |
yuzu: Move audio settings to audio section | |||
2023-03-13 | Merge pull request #9943 from vonchenplus/gentleman | liamwhite | |
video_core: Fix inline_index and draw_texture error | |||
2023-03-13 | Merge pull request #9936 from liamwhite/m_this | liamwhite | |
kernel: use consistent style | |||
2023-03-12 | input_common: sdl: Only send last vibration command | german77 | |
2023-03-12 | kernel: additional style fixes to KThread, KProcess | Liam | |
2023-03-12 | kernel: fix clang build | Liam | |
2023-03-12 | kernel: remove unnecessary finalize calls | Liam | |
2023-03-12 | kernel: convert KProcess to new style | Liam | |
2023-03-12 | kernel: convert KThread to new style | Liam | |
2023-03-12 | kernel: prefer std::addressof | Liam | |
2023-03-12 | kernel: convert KResourceLimit | Liam | |
2023-03-12 | kernel: remove kernel_ | Liam | |
2023-03-12 | kernel: remove gratitutous attribute usage | Liam | |
2023-03-12 | kernel/svc: convert to new style | Liam | |
2023-03-12 | kernel: convert miscellaneous | Liam | |
2023-03-12 | kernel: conver KScopedLock, KScopedResourceReservation, KSessionRequest, ↵ | Liam | |
KSharedMemory, KSpinLock | |||
2023-03-12 | kernel: convert KAbstractSchedulerLock | Liam | |