Flutter Engine
The Flutter Engine
command_queue_vk.cc
Go to the documentation of this file.
1// Copyright 2013 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "fml/status.h"
6
8
16
17namespace impeller {
18
19CommandQueueVK::CommandQueueVK(const std::weak_ptr<ContextVK>& context)
20 : context_(context) {}
21
23
25 const std::vector<std::shared_ptr<CommandBuffer>>& buffers,
26 const CompletionCallback& completion_callback) {
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}
90
91} // namespace impeller
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)
Definition: backend_cast.h:13
const std::shared_ptr< CommandEncoderVK > & GetEncoder()
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.
CommandQueueVK(const std::weak_ptr< ContextVK > &context)
std::function< void(CommandBuffer::Status)> CompletionCallback
Definition: command_queue.h:19
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir Path to the cache directory This is different from the persistent_cache_path in embedder which is used for Skia shader cache icu native lib Path to the library file that exports the ICU data vm service The hostname IP address on which the Dart VM Service should be served If not defaults to or::depending on whether ipv6 is specified vm service A custom Dart VM Service port The default is to pick a randomly available open port disable vm Disable the Dart VM Service The Dart VM Service is never available in release mode disable vm service Disable mDNS Dart VM Service publication Bind to the IPv6 localhost address for the Dart VM Service Ignored if vm service host is set endless trace buffer
Definition: switches.h:126
Task::Status Status
Definition: TaskList.cpp:15
static SkString to_string(int n)
Definition: nanobench.cpp:119
#define VALIDATION_LOG
Definition: validation.h:73