Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-02-21 | settings: Add more input settings to the log | Narr the Reg | |
2023-02-21 | core: hid: Fix native mouse mappings | Narr the Reg | |
2023-02-21 | Merge pull request #9847 from german77/timeout | liamwhite | |
yuzu: Set a lower timeout for discord presence | |||
2023-02-21 | yuzu: Set a lower timeout for discord presence | Narr the Reg | |
2023-02-21 | Merge pull request #9846 from merryhime/type-const | liamwhite | |
svc: Fix type consistency (exposed on macOS) | |||
2023-02-21 | Merge pull request #9841 from abouvier/httplib-update | liamwhite | |
externals: Update cpp-httplib to latest | |||
2023-02-21 | svc: Fix type consistency (exposed on macOS) | Merry | |
2023-02-21 | externals: Update cpp-httplib to latest | Alexandre Bouvier | |
2023-02-21 | net: translate ECONNRESET network error | MonsterDruide1 | |
2023-02-19 | Qt: Reintroduce scaling for touch input | german77 | |
2023-02-19 | Merge pull request #9771 from ameerj/host-thread-id | liamwhite | |
kernel: Refactor thread_local variable usage | |||
2023-02-19 | Merge pull request #9588 from liamwhite/bylaws-reverts | liamwhite | |
Revert "shader_recompiler: Align SSBO offsets to meet host requirements" | |||
2023-02-18 | Merge pull request #9815 from german77/qt-mouse | liamwhite | |
Qt: Fix mouse scalling | |||
2023-02-18 | Merge pull request #9825 from liamwhite/object-name | Morph | |
kernel: add KObjectName | |||
2023-02-17 | Merge pull request #9810 from Kelebek1/nvdec_threads | bunnei | |
Allow >1 cpu threads on video decoding, disable multi-frame decoding | |||
2023-02-17 | kernel: add KObjectName | Liam | |
2023-02-16 | Merge pull request #9817 from german77/save | Mai | |
yuzu: Write to config file on important config changes | |||
2023-02-16 | yuzu: Shutdown game on restart to reload per game config | Narr the Reg | |
2023-02-16 | yuzu: Write to config file on important config changes | Narr the Reg | |
2023-02-16 | Merge pull request #9802 from Kelebek1/wait_data_cache | bunnei | |
Re-add the invalidate_texture_data_cache register | |||
2023-02-16 | Merge pull request #9769 from Kelebek1/audio_oob | bunnei | |
[audio_core] Fix depop prepare | |||
2023-02-16 | input_common: Split mouse input into individual devices | Narr the Reg | |
2023-02-15 | Qt: Fix mouse scalling | german77 | |
2023-02-15 | Merge pull request #9796 from liamwhite/current | liamwhite | |
general: rename CurrentProcess to ApplicationProcess | |||
2023-02-15 | Merge pull request #9782 from arades79/fix-consexpr-value-declaration-usage | liamwhite | |
Fix consexpr value declaration usage | |||
2023-02-15 | Merge pull request #9809 from liamwhite/unused-service | bunnei | |
service: remove deleted services | |||
2023-02-14 | remove constexpr from virtual function | arades79 | |
Signed-off-by: arades79 <scravers@protonmail.com> | |||
2023-02-14 | Revert "main: Fix borderless fullscreen for high dpi scaled displays" | liamwhite | |
2023-02-14 | Reimplement the invalidate_texture_data_cache register | Kelebek1 | |
2023-02-14 | Allow >1 cpu threads on video decoding, disable multi-frame decoding | Kelebek1 | |
2023-02-14 | service: remove deleted services | Liam | |
2023-02-14 | use a string view to skip allocation | arades79 | |
Signed-off-by: arades79 <scravers@protonmail.com> | |||
2023-02-14 | remove static from pointer sized or smaller types for aesthetics, change ↵ | arades79 | |
constexpr static to static constexpr for consistency Signed-off-by: arades79 <scravers@protonmail.com> | |||
2023-02-14 | apply clang-format | arades79 | |
Signed-off-by: arades79 <scravers@protonmail.com> | |||
2023-02-14 | don't use static inside constexpr function | arades79 | |
Signed-off-by: arades79 <scravers@protonmail.com> | |||
2023-02-14 | add static lifetime to constexpr values to force compile time evaluation ↵ | arades79 | |
where possible Signed-off-by: arades79 <scravers@protonmail.com> | |||
2023-02-14 | Merge pull request #9795 from Kelebek1/biquad_fix | liamwhite | |
[audio_core] Use different state offset for each biquad filter channel | |||
2023-02-14 | Merge pull request #9793 from Morph1984/borderless-hidpi | liamwhite | |
main: Fix borderless fullscreen for high dpi scaled displays | |||
2023-02-13 | general: rename CurrentProcess to ApplicationProcess | Liam | |
2023-02-13 | Fix biquad filter command's state buffer offset | Kelebek1 | |
2023-02-13 | kernel: use GetCurrentProcess | Liam | |
2023-02-12 | Merge pull request #9784 from m-HD/master | bunnei | |
settings: added missing graphical settings to RestoreGlobalState() | |||
2023-02-12 | main: Fix borderless fullscreen for high dpi scaled displays | Morph | |
On Windows, a borderless window will be treated the same as exclusive fullscreen when the window geometry matches the physical dimensions of the screen. However, with High DPI scaling, when the devicePixelRatioF() is > 1, the borderless window apparently is not treated as exclusive fullscreen and functions correctly. One can verify and replicate this behavior by using a high resolution (4K) display, and switching between 100% and 200% scaling in Windows' display settings. At 100%, without the addition of 1, it is treated as exclusive fullscreen. At 200%, with or without the addition of 1, it is treated as borderless windowed. Therefore, we can use (read: abuse) this difference in behavior to fix this issue for those with higher resolution displays when the Qt scaling ratio is > 1. Should this behavior be changed in the future, please revisit this workaround. | |||
2023-02-12 | Merge pull request #9757 from german77/gyro | bunnei | |
core: hid: Use gyro thresholds modes set by the game | |||
2023-02-12 | Merge pull request #9746 from ameerj/ogl-msaa-texcache | bunnei | |
texture_cache: OpenGL: Implement MSAA uploads and copies | |||
2023-02-12 | Update settings.cpp | m-HD | |
added missing graphical settings to RestoreGlobalState() | |||
2023-02-11 | texture_cache: OpenGL: Implement MSAA uploads and copies | ameerj | |
2023-02-11 | kernel/svc: Fix undefined info_id | Colin Kinloch | |
2023-02-11 | Merge pull request #9777 from vonchenplus/speed_up_video_copy | liamwhite | |
video_core: Speed up video frame data copy | |||
2023-02-11 | Add fallback for memory read/write in case the address goes over a 4K page | Kelebek1 | |