| 442 | } |
| 443 | |
| 444 | std::shared_ptr<Sequence> |
| 445 | Manager::sequence(uint32_t queueIndex, uint32_t totalTimestamps) |
| 446 | { |
| 447 | KP_LOG_DEBUG("Kompute Manager sequence() with queueIndex: {}", queueIndex); |
| 448 | |
| 449 | std::shared_ptr<Sequence> sq{ new kp::Sequence( |
| 450 | this->mPhysicalDevice, |
| 451 | this->mDevice, |
| 452 | this->mComputeQueues[queueIndex], |
| 453 | this->mComputeQueueFamilyIndices[queueIndex], |
| 454 | totalTimestamps) }; |
| 455 | |
| 456 | if (this->mManageResources) { |
| 457 | this->mManagedSequences.push_back(sq); |
| 458 | } |
| 459 | |
| 460 | return sq; |
| 461 | } |
| 462 | |
| 463 | vk::PhysicalDeviceProperties |
| 464 | Manager::getDeviceProperties() const |
no outgoing calls