| 394 | } |
| 395 | |
| 396 | std::optional<uint32_t> Device::TransferOnlyQueueFamily() const { |
| 397 | return QueueFamily(VK_QUEUE_TRANSFER_BIT, VK_QUEUE_GRAPHICS_BIT | VK_QUEUE_COMPUTE_BIT); |
| 398 | } |
| 399 | |
| 400 | Queue* Device::TransferOnlyQueue() const { |
| 401 | auto family_index = TransferOnlyQueueFamily(); |