Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-12-12 | yuzu: Make unlimited frame rate non persistent between game boots | Narr the Reg | |
2022-12-12 | Merge pull request #9398 from liamwhite/fail | bunnei | |
general: improve handling of system startup failure | |||
2022-12-12 | Merge pull request #9406 from vonchenplus/topology | bunnei | |
video_core: Adjust topology update logic and Adjust Clear Manage | |||
2022-12-12 | input_common: Filter SDL GUID | Narr the Reg | |
2022-12-12 | Merge pull request #9420 from liamwhite/aniso | Mai | |
video_core: fix off by one in anisotropic filtering amount | |||
2022-12-11 | Merge pull request #9419 from liamwhite/no-gl | Mai | |
cmake: make OpenGL loader optional | |||
2022-12-11 | Merge pull request #9415 from liamwhite/dc | Mai | |
memory: correct semantics of data cache management operations | |||
2022-12-11 | memory: correct semantics of data cache management operations | Liam | |
2022-12-11 | Merge pull request #9409 from liamwhite/smaa2 | MatÃas Locatti | |
video_core: Integrate SMAA | |||
2022-12-10 | video_core: fix off by one in anisotropic filtering amount | Liam | |
2022-12-10 | cmake: make OpenGL loader optional | Liam | |
Co-authored-by: liushuyu <liushuyu@users.noreply.github.com> | |||
2022-12-10 | Merge pull request #9417 from liamwhite/debug-assert | Mai | |
memory: remove DEBUG_ASSERT pointer test | |||
2022-12-10 | audio_core: remove explicitly defaulted and implicitly deleted constructors | Liam | |
2022-12-10 | memory: remove DEBUG_ASSERT pointer test | Liam | |
2022-12-09 | Merge pull request #9412 from Saalvage/fix/trace-log-compilation | liamwhite | |
Fix compilation error | |||
2022-12-09 | Remove the lock entirely as per PR discussion | Salvage | |
Correctly unlock mutex before its destruction As per https://en.cppreference.com/w/cpp/thread/mutex/~mutex destroying a locked mutex is undefined behavior and MSVC++ decides to throw in this case Swap out unique for scoped lock and readd comment | |||
2022-12-09 | Fix compilation error | Salvage | |
2022-12-08 | video_core: Integrate SMAA | Liam | |
Co-authored-by: goldenx86 <goldenx86@users.noreply.github.com> Co-authored-by: BreadFish64 <breadfish64@users.noreply.github.com> | |||
2022-12-08 | video_core: Add vertex_array_instance_* sbubbed called warning | FengChen | |
2022-12-08 | video_core: The draw manager manages whether Clear is required. | FengChen | |
2022-12-08 | video_core: Adjust topology update logic | FengChen | |
2022-12-08 | Merge pull request #9401 from vonchenplus/draw_manager | Fernando S | |
video_core: Implement maxwell3d draw manager and split draw logic | |||
2022-12-08 | video_core: Implement maxwell3d draw manager and split draw logic | Feng Chen | |
2022-12-06 | Merge pull request #9365 from liamwhite/val | Morph | |
vulkan_common: quiet some validation errors | |||
2022-12-06 | general: improve handling of system startup failure | Liam | |
2022-12-06 | Merge pull request #9370 from liamwhite/break-unmapped | merry | |
core: add option to break on unmapped access | |||
2022-12-06 | Merge pull request #9393 from liamwhite/more-vulkan | Fernando S | |
vulkan_common: further initialization tweaks | |||
2022-12-06 | Merge pull request #9392 from lioncash/reporter | liamwhite | |
reporter: Eliminate undefined behavior in SaveErrorReport | |||
2022-12-06 | Merge pull request #9390 from lioncash/keyboard | liamwhite | |
applets: Extract callback types into aliases | |||
2022-12-06 | Merge pull request #9389 from lioncash/emumove | liamwhite | |
emulated_console/emulated_controller: std::move ParamPackage instances where applicable | |||
2022-12-06 | Merge pull request #9386 from lioncash/init | liamwhite | |
kernel: Ensure relevant class members are always initialized on construction | |||
2022-12-06 | Merge pull request #9391 from abouvier/cmake-sdl | liamwhite | |
cmake: use sdl2 imported target | |||
2022-12-06 | Merge pull request #9387 from abouvier/cmake-libusb | liamwhite | |
cmake: prefer system libusb | |||
2022-12-06 | configure_graphics: Make SPIRV backend string translatable | Lioncash | |
The parenthetical needs to be translatable, like with GLASM | |||
2022-12-06 | cmake: prefer system libusb | Alexandre Bouvier | |
2022-12-05 | Merge pull request #9369 from german77/mifare | liamwhite | |
service: nfc: Implement mifare service | |||
2022-12-05 | Merge pull request #9360 from Kelebek1/R-E-S-P-E-C-T | liamwhite | |
Respect render mode override | |||
2022-12-05 | vulkan_common: further initialization tweaks | Liam | |
2022-12-05 | reporter: Pass by const reference where applicable | Lioncash | |
Same behavior, but without memory churn. | |||
2022-12-05 | reporter: Eliminate undefined behavior in SaveErrorReport | Lioncash | |
The optionals are unconditionally dereferenced when setting the custom error text, and in a few cases this function is called using the default value of the optionals. This means we'd be dereferencing uninitialized storage. Since they're used unconditionally, we can use value_or to set a default when storage is uninitialized. | |||
2022-12-06 | cmake: use sdl2 imported target | Alexandre Bouvier | |
2022-12-05 | applets/controller: Use aliases for callbacks | Lioncash | |
2022-12-05 | applets/error: Use aliases for callbacks | Lioncash | |
2022-12-05 | applets/mii_edit: Use aliases for callbacks | Lioncash | |
2022-12-05 | applets/profile_select: Use aliases for callbacks | Lioncash | |
Deduplicates callback definitions and situates it in one place. | |||
2022-12-05 | applets/web_browser: Use aliases for callbacks | Lioncash | |
Deduplicates a lot of long callback declarations | |||
2022-12-05 | applets/software_keyboard: Use aliases for callbacks | Lioncash | |
Deduplicates really long std::function declarations to make the interface nicer to read. | |||
2022-12-05 | emulated_controller: Remove unused parameter in GetMappedDevices() | Lioncash | |
This isn't used, so it can be removed to make the function a little nicer. | |||
2022-12-05 | emulated_controller: Use std::move() in GetMappedDevices() | Lioncash | |
Avoids churning allocations in a loop. | |||
2022-12-05 | emulated_console: Amend cast in SetTouch() | Lioncash | |
id is an int value, not a u32. |