feat: switch away from parking_lot::Mutex
Switching away from `parking_lot::Mutex` as `std::sync::Mutex` performs better in all scenarios on both of our targets (linux/windows).
This commit is contained in:
parent
234e2ab78d
commit
f71f0d8e10
10 changed files with 66 additions and 38 deletions
3
Cargo.lock
generated
3
Cargo.lock
generated
|
|
@ -613,7 +613,6 @@ version = "0.1.0"
|
|||
dependencies = [
|
||||
"ash",
|
||||
"ash-window",
|
||||
"parking_lot",
|
||||
"thiserror 2.0.12",
|
||||
"tracing",
|
||||
"winit",
|
||||
|
|
@ -1308,7 +1307,6 @@ dependencies = [
|
|||
"gfx_hal",
|
||||
"glam",
|
||||
"gpu-allocator",
|
||||
"parking_lot",
|
||||
"resource_manager",
|
||||
"shaderc",
|
||||
"thiserror 2.0.12",
|
||||
|
|
@ -1324,7 +1322,6 @@ dependencies = [
|
|||
"ash",
|
||||
"gfx_hal",
|
||||
"gpu-allocator",
|
||||
"parking_lot",
|
||||
"thiserror 2.0.12",
|
||||
"tracing",
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue