Flutter Impeller
impeller::QueuesVK Struct Reference

The collection of queues used by the context. The queues may all be the same. More...

#include <queue_vk.h>

Public Member Functions

 QueuesVK ()
 
 QueuesVK (const vk::Device &device, QueueIndexVK graphics, QueueIndexVK compute, QueueIndexVK transfer)
 
bool IsValid () const
 

Public Attributes

std::shared_ptr< QueueVKgraphics_queue
 
std::shared_ptr< QueueVKcompute_queue
 
std::shared_ptr< QueueVKtransfer_queue
 

Detailed Description

The collection of queues used by the context. The queues may all be the same.

Definition at line 63 of file queue_vk.h.

Constructor & Destructor Documentation

◆ QueuesVK() [1/2]

impeller::QueuesVK::QueuesVK ( )
default

◆ QueuesVK() [2/2]

impeller::QueuesVK::QueuesVK ( const vk::Device &  device,
QueueIndexVK  graphics,
QueueIndexVK  compute,
QueueIndexVK  transfer 
)

Definition at line 48 of file queue_vk.cc.

51  {
52  auto vk_graphics = device.getQueue(graphics.family, graphics.index);
53  auto vk_compute = device.getQueue(compute.family, compute.index);
54  auto vk_transfer = device.getQueue(transfer.family, transfer.index);
55 
56  // Always set up the graphics queue.
57  graphics_queue = std::make_shared<QueueVK>(graphics, vk_graphics);
58  ContextVK::SetDebugName(device, vk_graphics, "ImpellerGraphicsQ");
59 
60  // Setup the compute queue if its different from the graphics queue.
61  if (compute == graphics) {
63  } else {
64  compute_queue = std::make_shared<QueueVK>(compute, vk_compute);
65  ContextVK::SetDebugName(device, vk_compute, "ImpellerComputeQ");
66  }
67 
68  // Setup the transfer queue if its different from the graphics or compute
69  // queues.
70  if (transfer == graphics) {
72  } else if (transfer == compute) {
74  } else {
75  transfer_queue = std::make_shared<QueueVK>(transfer, vk_transfer);
76  ContextVK::SetDebugName(device, vk_transfer, "ImpellerTransferQ");
77  }
78 }

References compute_queue, impeller::QueueIndexVK::family, graphics_queue, impeller::QueueIndexVK::index, impeller::ContextVK::SetDebugName(), and transfer_queue.

Member Function Documentation

◆ IsValid()

bool impeller::QueuesVK::IsValid ( ) const

Definition at line 80 of file queue_vk.cc.

80  {
82 }

References compute_queue, graphics_queue, and transfer_queue.

Member Data Documentation

◆ compute_queue

std::shared_ptr<QueueVK> impeller::QueuesVK::compute_queue

Definition at line 65 of file queue_vk.h.

Referenced by IsValid(), and QueuesVK().

◆ graphics_queue

std::shared_ptr<QueueVK> impeller::QueuesVK::graphics_queue

Definition at line 64 of file queue_vk.h.

Referenced by impeller::ContextVK::GetGraphicsQueue(), IsValid(), and QueuesVK().

◆ transfer_queue

std::shared_ptr<QueueVK> impeller::QueuesVK::transfer_queue

Definition at line 66 of file queue_vk.h.

Referenced by IsValid(), and QueuesVK().


The documentation for this struct was generated from the following files:
impeller::QueuesVK::graphics_queue
std::shared_ptr< QueueVK > graphics_queue
Definition: queue_vk.h:64
impeller::QueuesVK::transfer_queue
std::shared_ptr< QueueVK > transfer_queue
Definition: queue_vk.h:66
impeller::QueuesVK::compute_queue
std::shared_ptr< QueueVK > compute_queue
Definition: queue_vk.h:65
impeller::ContextVK::SetDebugName
bool SetDebugName(T handle, std::string_view label) const
Definition: context_vk.h:108