Flutter Engine
The Flutter Engine
Public Member Functions | Public Attributes | List of all members
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}
bool SetDebugName(T handle, std::string_view label) const
Definition: context_vk.h:108
VkDevice device
Definition: main.cc:53
std::shared_ptr< QueueVK > compute_queue
Definition: queue_vk.h:65
std::shared_ptr< QueueVK > transfer_queue
Definition: queue_vk.h:66
std::shared_ptr< QueueVK > graphics_queue
Definition: queue_vk.h:64

Member Function Documentation

◆ IsValid()

bool impeller::QueuesVK::IsValid ( ) const

Definition at line 80 of file queue_vk.cc.

80 {
82}

Member Data Documentation

◆ compute_queue

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

Definition at line 65 of file queue_vk.h.

◆ graphics_queue

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

Definition at line 64 of file queue_vk.h.

◆ transfer_queue

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

Definition at line 66 of file queue_vk.h.


The documentation for this struct was generated from the following files: