VKSHARINGMODECONCURRENT
VK_SHARING_MODE_CONCURRENT is a value in the Vulkan API that indicates a resource may be accessed by multiple queue families without explicit ownership transfer. In Vulkan, resources such as buffers and images are created with a sharing mode that defines how they are shared among queue families. There are two supported modes: VK_SHARING_MODE_EXCLUSIVE and VK_SHARING_MODE_CONCURRENT.
In EXCLUSIVE mode, a resource is owned by a single queue family at a time. Access by
In CONCURRENT mode, the resource can be concurrently accessed by multiple queue families as specified at creation
Choosing between modes depends on usage patterns and hardware: EXCLUSIVE is preferred for performance when a