kd-11
b2949f114b
vk: Wrap device fault handler in SEH2
2024-12-25 01:41:23 +03:00
kd-11
e3df7bccac
vk: Selectively enable extended device fault features in logical device creation step
2024-12-25 01:41:23 +03:00
kd-11
2c45438422
vk: Minor improvements to extended fault output
2024-12-25 01:41:23 +03:00
kd-11
4ef1d48c0c
vk: Properly initialize device fault counts structure
2024-12-25 01:41:23 +03:00
kd-11
7b6a672c64
vk: Fix device fault extension loading
2024-12-25 01:41:23 +03:00
kd-11
883529eaf3
vk: Add support for spec-compliant query scopes
2024-12-25 01:41:23 +03:00
kd-11
afc10ea112
vk: Workaround for older SDK header versions
2024-12-25 01:41:23 +03:00
kd-11
488e5d9eb5
vk: Register honeykrisp as known driver in RTT quirks check
2024-12-25 01:41:23 +03:00
kd-11
6d976b5d90
vk: Fix build
2024-12-25 01:41:23 +03:00
kd-11
b44e2d3b30
vk: Add basic support for honeykrisp driver
2024-12-25 01:41:23 +03:00
kd-11
a196bbcbcd
vk: Remove unnecessary workaround for older SDK versions
2024-12-25 01:41:23 +03:00
kd-11
6000e3a47d
vk: Add support for extended device fault information
2024-12-25 01:41:23 +03:00
Elad
575a245f8d
IDM: Implement lock-free smart pointers ( #16403 )
...
Replaces `std::shared_pointer` with `stx::atomic_ptr` and `stx::shared_ptr`.
Notes to programmers:
* This pr kills the use of `dynamic_cast`, `std::dynamic_pointer_cast` and `std::weak_ptr` on IDM objects, possible replacement is to save the object ID on the base object, then use idm::check/get_unlocked to the destination type via the saved ID which may be null. Null pointer check is how you can tell type mismatch (as dynamic cast) or object destruction (as weak_ptr locking).
* Double-inheritance on IDM objects should be used with care, `stx::shared_ptr` does not support constant-evaluated pointer offsetting to parent/child type.
* `idm::check/get_unlocked` can now be used anywhere.
Misc fixes:
* Fixes some segfaults with RPCN with interaction with IDM.
* Fix deadlocks in access violation handler due locking recursion.
* Fixes race condition in process exit-spawn on memory containers read.
* Fix bug that theoretically can prevent RPCS3 from booting - fix `id_manager::typeinfo` comparison to compare members instead of `memcmp` which can fail spuriously on padding bytes.
* Ensure all IDM inherited types of base, either has `id_base` or `id_type` defined locally, this allows to make getters such as `idm::get_unlocked<lv2_socket, lv2_socket_raw>()` which were broken before. (requires save-states invalidation)
* Removes broken operator[] overload of `stx::shared_ptr` and `stx::single_ptr` for non-array types.
2024-12-22 20:59:48 +02:00
kd-11
760b49bc6c
Cleanup
2024-12-21 15:24:15 +03:00
kd-11
70eca8cb24
vk: Fix border color swizzling behavior
2024-12-21 15:24:15 +03:00
Megamouse
385d21e6dc
Fix some warnings
2024-12-20 17:30:25 +01:00
Megamouse
5073477415
cellGem: Split horizontal and vertical mouse rotation cone setting
2024-12-19 16:55:39 +01:00
Megamouse
e18ae5abd6
cellGem: expose rotation cone to settings
2024-12-18 09:14:04 +01:00
kd-11
30ca2370ab
rsx: Improve MM synchronization
2024-12-16 19:00:08 +03:00
kd-11
21eaee0e23
rsx: Revert bounds optimization on RO texture load
2024-12-16 19:00:08 +03:00
kd-11
cd7e1e1e2b
rsx: Improve performance even more when async MM is active
2024-12-16 19:00:08 +03:00
kd-11
4b30e82aee
rsx: Restore previous (incorrect) low-precision format handling
2024-12-16 19:00:08 +03:00
kd-11
83c0212b59
rsx/qt: Add option to disable async host MM to GUI
2024-12-16 19:00:08 +03:00
kd-11
b4a72b6223
rsx: Fix texture renormalization flag and fix windows build
2024-12-16 19:00:08 +03:00
kd-11
c9a7abdd09
rsx: Fix OpenGL deadlock
2024-12-16 19:00:08 +03:00
kd-11
49d11b2e36
rsx: Make the deferred mm flush option usable with OpenGL
2024-12-16 19:00:08 +03:00
kd-11
83764fbbb4
rsx/vk: Implement asynchronous host memory management.
2024-12-16 19:00:08 +03:00
Elad
191e132c6c
util/types.hpp: Rewrite narrow<>
2024-11-27 16:00:40 +02:00
kd-11
3e427c57f0
rsx: Use strict bounds testing when replacing memory via blit engine
2024-11-25 22:21:07 +03:00
kd-11
9afebfdd72
rsx/texture-cache: Rework invalidation cause object to have more granular controls
2024-11-25 22:21:07 +03:00
kd-11
109b841d8d
rsx/util: Change the filter function to an in-place erase-if operation
2024-11-25 22:21:07 +03:00
Darkhost1999
b94ddb0cd3
Migrate Savestates Home Menu ( #16340 )
2024-11-23 21:29:07 +02:00
Megamouse
29901d65ed
More constexpr
2024-11-16 15:10:20 +01:00
Megamouse
070add461f
overlays: get localized values in home menu settings
2024-11-15 09:48:12 +01:00
Megamouse
d78c39b3ab
overlays: add more overlay hint option to home menu settings
2024-11-14 23:23:36 +01:00
Megamouse
81bb4b5951
overlays: remove unnecessary text logging
2024-11-14 23:23:36 +01:00
Megamouse
9461294ffc
overlays: add input debug overlay to home menu settings
2024-11-14 23:23:36 +01:00
Megamouse
7087582a36
overlays: translate home menu settings
...
Also fix potential lambda text capture issue
2024-11-14 23:23:36 +01:00
Megamouse
2262ac1684
Qt: Replace QMap with std::map
...
This should reduce the amount of string conversions during list refreshes
2024-11-06 09:34:32 +01:00
NicknineTheEagle
6d766ccbb5
cellSaveData: Add autosave indicator ( #15720 )
2024-11-04 21:53:34 +01:00
Elad
0e31aafc09
Fixup GCM unmap event sending
2024-11-02 21:43:35 +02:00
Elad
2222807624
RSX/GCM: Fix memory unmapping for HLE GCM
2024-11-01 10:43:46 +02:00
Elad
488814bb2d
rsx/vm: Exclude events from VM mutex
...
Fixes a deadlock from a recent pull request, perhaps also some deadlocks with locking both IDM and VM mutex.
2024-11-01 07:37:57 +02:00
elad335
92bf6ed0a7
Replace rsx::uclock with get_system_time()
2024-10-29 19:26:33 +02:00
kd-11
60ae4c1121
rsx: Fix crash when host labels option is disabled
2024-10-23 19:28:32 +02:00
kd-11
5ed7d043c4
Fix build and cleanup
2024-10-23 16:33:44 +03:00
kd-11
c28ec457fd
gl: Silence compiler warnings
2024-10-23 16:33:44 +03:00
kd-11
a79ef1efb2
gl: Fix check_state compilation error
2024-10-23 16:33:44 +03:00
kd-11
681debd8f6
gl: Finalize host labels implementation
2024-10-23 16:33:44 +03:00
kd-11
0db06964dc
Whitespace
2024-10-23 16:33:44 +03:00