Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | List of all members
impeller::CommandQueueVK Class Reference

#include <command_queue_vk.h>

Inheritance diagram for impeller::CommandQueueVK:
impeller::CommandQueue

Public Member Functions

 CommandQueueVK (const std::weak_ptr< ContextVK > &context)
 
 ~CommandQueueVK () override
 
fml::Status Submit (const std::vector< std::shared_ptr< CommandBuffer > > &buffers, const CompletionCallback &completion_callback={}) override
 Submit one or more command buffer objects to be encoded and executed on the GPU.
 
- Public Member Functions inherited from impeller::CommandQueue
 CommandQueue ()
 
virtual ~CommandQueue ()
 

Additional Inherited Members

- Public Types inherited from impeller::CommandQueue
using CompletionCallback = std::function< void(CommandBuffer::Status)>
 

Detailed Description

Definition at line 14 of file command_queue_vk.h.

Constructor & Destructor Documentation

◆ CommandQueueVK()

impeller::CommandQueueVK::CommandQueueVK ( const std::weak_ptr< ContextVK > &  context)
explicit

Definition at line 19 of file command_queue_vk.cc.

20 : context_(context) {}

◆ ~CommandQueueVK()

impeller::CommandQueueVK::~CommandQueueVK ( )
overridedefault

Member Function Documentation

◆ Submit()

fml::Status impeller::CommandQueueVK::Submit ( const std::vector< std::shared_ptr< CommandBuffer > > &  buffers,
const CompletionCallback completion_callback = {} 
)
overridevirtual

Submit one or more command buffer objects to be encoded and executed on the GPU.

The order of the provided buffers determines the ordering in which they are submitted.

The returned status only indicates if the command buffer was successfully submitted. Successful completion of the command buffer can only be checked in the optional completion callback.

Only the Metal and Vulkan backends can give a status beyond successful encoding. This callback may be called more than once and potentially on a different thread.

Reimplemented from impeller::CommandQueue.

Definition at line 24 of file command_queue_vk.cc.

26 {
27 if (buffers.empty()) {
29 "No command buffers provided.");
30 }
31 // Success or failure, you only get to submit once.
33 if (completion_callback) {
34 completion_callback(CommandBuffer::Status::kError);
35 }
36 });
37
38 std::vector<vk::CommandBuffer> vk_buffers;
39 std::vector<std::shared_ptr<TrackedObjectsVK>> tracked_objects;
40 vk_buffers.reserve(buffers.size());
41 tracked_objects.reserve(buffers.size());
42 for (const std::shared_ptr<CommandBuffer>& buffer : buffers) {
44 if (!encoder->EndCommandBuffer()) {
46 "Failed to end command buffer.");
47 }
48 tracked_objects.push_back(encoder->tracked_objects_);
49 vk_buffers.push_back(encoder->GetCommandBuffer());
50 encoder->Reset();
51 }
52
53 auto context = context_.lock();
54 if (!context) {
55 VALIDATION_LOG << "Device lost.";
56 return fml::Status(fml::StatusCode::kCancelled, "Device lost.");
57 }
58 auto [fence_result, fence] = context->GetDevice().createFenceUnique({});
59 if (fence_result != vk::Result::eSuccess) {
60 VALIDATION_LOG << "Failed to create fence: " << vk::to_string(fence_result);
61 return fml::Status(fml::StatusCode::kCancelled, "Failed to create fence.");
62 }
63
64 vk::SubmitInfo submit_info;
65 submit_info.setCommandBuffers(vk_buffers);
66 auto status = context->GetGraphicsQueue()->Submit(submit_info, *fence);
67 if (status != vk::Result::eSuccess) {
68 VALIDATION_LOG << "Failed to submit queue: " << vk::to_string(status);
69 return fml::Status(fml::StatusCode::kCancelled, "Failed to submit queue: ");
70 }
71
72 // Submit will proceed, call callback with true when it is done and do not
73 // call when `reset` is collected.
74 auto added_fence = context->GetFenceWaiter()->AddFence(
75 std::move(fence), [completion_callback, tracked_objects = std::move(
76 tracked_objects)]() mutable {
77 // Ensure tracked objects are destructed before calling any final
78 // callbacks.
79 tracked_objects.clear();
80 if (completion_callback) {
81 completion_callback(CommandBuffer::Status::kCompleted);
82 }
83 });
84 if (!added_fence) {
85 return fml::Status(fml::StatusCode::kCancelled, "Failed to add fence.");
86 }
87 reset.Release();
88 return fml::Status();
89}
m reset()
Wraps a closure that is invoked in the destructor unless released by the caller.
Definition closure.h:32
static CommandBufferVK & Cast(CommandBuffer &base)
const std::shared_ptr< CommandEncoderVK > & GetEncoder()
static const uint8_t buffer[]
#define VALIDATION_LOG
Definition validation.h:73

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