-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
There are memory corruption crashes inside DescriptorSetAllocator with Android Graphite/Dawn/Vulkan. The class is accessed with MutexProtected from BindGroupLayoutVk but not from DeviceVk so concurrent access to member variables on different threads seems possible. Since the class is reference counted move the mutex inside the class so that calling a method on any reference is thread safe. Bug: 368362677 Change-Id: I7ca400555261c75995431d4a4023a571747961ee Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/212774 Reviewed-by: Corentin Wallez <[email protected]> Reviewed-by: Geoff Lang <[email protected]> Commit-Queue: Kyle Charbonneau <[email protected]>
- Loading branch information
Kyle Charbonneau
authored and
Dawn LUCI CQ
committed
Oct 31, 2024
1 parent
efed88f
commit e249898
Showing
3 changed files
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters