1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
|
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/viz/service/display_embedder/skia_output_device.h"
#include <algorithm>
#include <utility>
#include "base/check_op.h"
#include "base/notimplemented.h"
#include "base/task/common/task_annotator.h"
#include "gpu/command_buffer/service/graphite_shared_context.h"
#include "gpu/command_buffer/service/memory_tracking.h"
#include "gpu/command_buffer/service/shared_context_state.h"
#include "gpu/command_buffer/service/skia_utils.h"
#include "services/tracing/public/cpp/perfetto/flow_event_utils.h"
#include "third_party/skia/include/core/SkSurface.h"
#include "third_party/skia/include/gpu/ganesh/GrDirectContext.h"
#include "third_party/skia/include/gpu/ganesh/GrTypes.h"
#include "third_party/skia/include/gpu/graphite/Context.h"
#include "third_party/skia/include/gpu/graphite/Recording.h"
#include "third_party/skia/include/private/chromium/GrDeferredDisplayList.h"
#include "ui/gfx/gpu_fence.h"
#include "ui/gfx/presentation_feedback.h"
#if BUILDFLAG(IS_WIN)
#include "components/viz/service/display/dc_layer_overlay.h"
#endif
namespace viz {
namespace {
void ReportLatency(const gfx::SwapTimings& timings,
std::vector<ui::LatencyInfo> latency_info) {
for (auto& latency : latency_info) {
latency.AddLatencyNumberWithTimestamp(
ui::INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT, timings.swap_start);
latency.AddLatencyNumberWithTimestamp(
ui::INPUT_EVENT_LATENCY_FRAME_SWAP_COMPONENT, timings.swap_end);
}
}
} // namespace
SkiaOutputDevice::ScopedPaint::ScopedPaint(
std::vector<GrBackendSemaphore> end_semaphores,
SkiaOutputDevice* device,
SkSurface* sk_surface)
: end_semaphores_(std::move(end_semaphores)),
device_(device),
sk_surface_(sk_surface) {}
SkiaOutputDevice::ScopedPaint::~ScopedPaint() {
DCHECK(end_semaphores_.empty());
device_->EndPaint();
}
SkCanvas* SkiaOutputDevice::ScopedPaint::GetCanvas() {
return device_->GetCanvas(sk_surface_);
}
GrSemaphoresSubmitted SkiaOutputDevice::ScopedPaint::Flush(
VulkanContextProvider* vulkan_context_provider,
std::vector<GrBackendSemaphore> end_semaphores,
base::OnceClosure on_finished) {
return device_->Flush(sk_surface_, vulkan_context_provider,
std::move(end_semaphores), std::move(on_finished));
}
bool SkiaOutputDevice::ScopedPaint::Wait(
int num_semaphores,
const GrBackendSemaphore wait_semaphores[],
bool delete_semaphores_after_wait) {
return device_->Wait(sk_surface_, num_semaphores, wait_semaphores,
delete_semaphores_after_wait);
}
bool SkiaOutputDevice::ScopedPaint::Draw(
sk_sp<const GrDeferredDisplayList> ddl) {
return device_->Draw(sk_surface_, std::move(ddl));
}
bool SkiaOutputDevice::ScopedPaint::Draw(
gpu::GraphiteSharedContext* graphite_shared_context,
std::unique_ptr<skgpu::graphite::Recording> graphite_recording,
base::OnceClosure on_finished) {
return device_->Draw(graphite_shared_context, sk_surface_,
std::move(graphite_recording), std::move(on_finished));
}
SkiaOutputDevice::SkiaOutputDevice(
GrDirectContext* gr_context,
gpu::GraphiteSharedContext* graphite_shared_context,
scoped_refptr<gpu::MemoryTracker> memory_tracker,
DidSwapBufferCompleteCallback did_swap_buffer_complete_callback,
ReleaseOverlaysCallback release_overlays_callback)
: did_swap_buffer_complete_callback_(
std::move(did_swap_buffer_complete_callback)),
release_overlays_callback_(std::move(release_overlays_callback)),
memory_type_tracker_(
std::make_unique<gpu::MemoryTypeTracker>(std::move(memory_tracker))) {
if (gr_context) {
CHECK(!graphite_shared_context);
capabilities_.max_render_target_size = gr_context->maxRenderTargetSize();
capabilities_.max_texture_size = gr_context->maxTextureSize();
} else {
CHECK(graphite_shared_context);
capabilities_.max_render_target_size =
graphite_shared_context->maxTextureSize();
capabilities_.max_texture_size = graphite_shared_context->maxTextureSize();
}
}
SkiaOutputDevice::~SkiaOutputDevice() = default;
std::unique_ptr<SkiaOutputDevice::ScopedPaint>
SkiaOutputDevice::BeginScopedPaint() {
std::vector<GrBackendSemaphore> end_semaphores;
SkSurface* sk_surface = BeginPaint(&end_semaphores);
if (!sk_surface) {
return nullptr;
}
return std::make_unique<SkiaOutputDevice::ScopedPaint>(
std::move(end_semaphores), this, sk_surface);
}
void SkiaOutputDevice::SetViewportSize(const gfx::Size& viewport_size) {}
void SkiaOutputDevice::Submit(
scoped_refptr<gpu::SharedContextState> context_state,
bool sync_cpu,
base::OnceClosure callback) {
if (auto* gr_context = context_state->gr_context()) {
gr_context->submit(sync_cpu ? GrSyncCpu::kYes : GrSyncCpu::kNo);
} else {
auto* graphite_shared_context = context_state->graphite_shared_context();
CHECK(graphite_shared_context);
graphite_shared_context->submit(sync_cpu ? skgpu::graphite::SyncToCpu::kYes
: skgpu::graphite::SyncToCpu::kNo);
}
std::move(callback).Run();
}
void SkiaOutputDevice::ScheduleOverlays(
SkiaOutputSurface::OverlayList overlays) {
NOTIMPLEMENTED();
}
void SkiaOutputDevice::EnsureBackbuffer() {}
void SkiaOutputDevice::DiscardBackbuffer() {}
void SkiaOutputDevice::SetDrawTimings(base::TimeTicks submitted,
base::TimeTicks started) {
viz_scheduled_draw_ = submitted;
gpu_started_draw_ = started;
}
void SkiaOutputDevice::SetDependencyTimings(base::TimeTicks task_ready) {
gpu_task_ready_ = task_ready;
}
void SkiaOutputDevice::ReadbackForTesting(
base::OnceCallback<void(SkBitmap)> callback) {
NOTIMPLEMENTED();
}
void SkiaOutputDevice::StartSwapBuffers(BufferPresentedCallback feedback) {
DCHECK_LT(static_cast<int>(pending_swaps_.size()),
capabilities_.pending_swap_params.GetMax());
pending_swaps_.emplace(++swap_id_, std::move(feedback), viz_scheduled_draw_,
gpu_started_draw_, gpu_task_ready_);
viz_scheduled_draw_ = base::TimeTicks();
gpu_started_draw_ = base::TimeTicks();
gpu_task_ready_ = base::TimeTicks();
}
void SkiaOutputDevice::FinishSwapBuffers(
gfx::SwapCompletionResult result,
const gfx::Size& size,
OutputSurfaceFrame frame,
const std::optional<gfx::Rect>& damage_area,
std::vector<gpu::Mailbox> released_overlays) {
DCHECK(!pending_swaps_.empty());
TRACE_EVENT(
"viz,benchmark,graphics.pipeline", "Graphics.Pipeline",
perfetto::Flow::Global(frame.data.swap_trace_id),
[swap_trace_id = frame.data.swap_trace_id](perfetto::EventContext ctx) {
base::TaskAnnotator::EmitTaskTimingDetails(ctx);
auto* event = ctx.event<perfetto::protos::pbzero::ChromeTrackEvent>();
auto* data = event->set_chrome_graphics_pipeline();
data->set_step(perfetto::protos::pbzero::ChromeGraphicsPipeline::
StepName::STEP_FINISH_BUFFER_SWAP);
data->set_display_trace_id(swap_trace_id);
});
auto release_fence = std::move(result.release_fence);
const gpu::SwapBuffersCompleteParams& params =
pending_swaps_.front().Complete(std::move(result), damage_area,
std::move(released_overlays),
frame.data.swap_trace_id);
did_swap_buffer_complete_callback_.Run(params, size,
std::move(release_fence));
pending_swaps_.front().CallFeedback();
ReportLatency(params.swap_response.timings, std::move(frame.latency_info));
pending_swaps_.pop();
// If there are skipped swaps at the front of the queue, they are now ready
// to be acknowledged without breaking ordering.
if (!pending_swaps_.empty()) {
auto iter = skipped_swap_info_.find(pending_swaps_.front().SwapId());
if (iter != skipped_swap_info_.end()) {
OutputSurfaceFrame output_frame = std::move(iter->second);
gfx::Size frame_size = output_frame.size;
skipped_swap_info_.erase(iter);
// Recursively call into FinishSwapBuffers until the head of the queue is
// no longer a skipped swap.
FinishSwapBuffers(
gfx::SwapCompletionResult(gfx::SwapResult::SWAP_SKIPPED), frame_size,
std::move(output_frame));
}
}
}
void SkiaOutputDevice::SwapBuffersSkipped(BufferPresentedCallback feedback,
OutputSurfaceFrame frame) {
StartSwapBuffers(std::move(feedback));
// If there are no other pending swaps, we can immediately close out the
// "skipped" swap that was just enqueued. If there are outstanding pending
// swaps, however, we need to wait for them to complete to avoid reordering
// complete/presentation callbacks.
if (pending_swaps_.size() == 1) {
gfx::Size frame_size = frame.size;
FinishSwapBuffers(gfx::SwapCompletionResult(gfx::SwapResult::SWAP_SKIPPED),
frame_size, std::move(frame));
} else {
skipped_swap_info_[swap_id_] = std::move(frame);
}
}
SkiaOutputDevice::SwapInfo::SwapInfo(
uint64_t swap_id,
SkiaOutputDevice::BufferPresentedCallback feedback,
base::TimeTicks viz_scheduled_draw,
base::TimeTicks gpu_started_draw,
base::TimeTicks gpu_task_ready)
: feedback_(std::move(feedback)) {
params_.swap_response.swap_id = swap_id;
params_.swap_response.timings.swap_start = base::TimeTicks::Now();
params_.swap_response.timings.viz_scheduled_draw = viz_scheduled_draw;
params_.swap_response.timings.gpu_started_draw = gpu_started_draw;
params_.swap_response.timings.gpu_task_ready = gpu_task_ready;
}
SkiaOutputDevice::SwapInfo::SwapInfo(SwapInfo&& other) = default;
SkiaOutputDevice::SwapInfo::~SwapInfo() = default;
uint64_t SkiaOutputDevice::SwapInfo::SwapId() {
return params_.swap_response.swap_id;
}
const gpu::SwapBuffersCompleteParams& SkiaOutputDevice::SwapInfo::Complete(
gfx::SwapCompletionResult result,
const std::optional<gfx::Rect>& damage_rect,
std::vector<gpu::Mailbox> released_overlays,
int64_t swap_trace_id) {
params_.swap_response.result = result.swap_result;
params_.swap_response.timings.swap_end = base::TimeTicks::Now();
params_.frame_buffer_damage_area = damage_rect;
if (result.ca_layer_params)
params_.ca_layer_params = *result.ca_layer_params;
params_.released_overlays = std::move(released_overlays);
params_.swap_trace_id = swap_trace_id;
return params_;
}
void SkiaOutputDevice::SwapInfo::CallFeedback() {
if (feedback_) {
uint32_t flags = 0;
if (params_.swap_response.result != gfx::SwapResult::SWAP_ACK)
flags = gfx::PresentationFeedback::Flags::kFailure;
std::move(feedback_).Run(
gfx::PresentationFeedback(params_.swap_response.timings.swap_start,
/*interval=*/base::TimeDelta(), flags));
}
}
SkCanvas* SkiaOutputDevice::GetCanvas(SkSurface* sk_surface) {
return sk_surface->getCanvas();
}
GrSemaphoresSubmitted SkiaOutputDevice::Flush(
SkSurface* sk_surface,
VulkanContextProvider* vulkan_context_provider,
std::vector<GrBackendSemaphore> end_semaphores,
base::OnceClosure on_finished) {
CHECK(sk_surface);
GrFlushInfo flush_info = {
.fNumSemaphores = end_semaphores.size(),
.fSignalSemaphores = end_semaphores.data(),
};
gpu::AddVulkanCleanupTaskForSkiaFlush(vulkan_context_provider, &flush_info);
if (on_finished)
gpu::AddCleanupTaskForSkiaFlush(std::move(on_finished), &flush_info);
if (GrDirectContext* direct_context =
GrAsDirectContext(sk_surface->recordingContext())) {
return direct_context->flush(sk_surface, flush_info);
}
return {};
}
bool SkiaOutputDevice::Wait(SkSurface* sk_surface,
int num_semaphores,
const GrBackendSemaphore wait_semaphores[],
bool delete_semaphores_after_wait) {
return sk_surface->wait(num_semaphores, wait_semaphores,
delete_semaphores_after_wait);
}
bool SkiaOutputDevice::Draw(SkSurface* sk_surface,
sk_sp<const GrDeferredDisplayList> ddl) {
#if DCHECK_IS_ON()
const auto& characterization = ddl->characterization();
if (!sk_surface->isCompatible(characterization)) {
GrSurfaceCharacterization surface_characterization;
DCHECK(sk_surface->characterize(&surface_characterization));
#define CHECK_PROPERTY(name) \
DCHECK_EQ(characterization.name(), surface_characterization.name());
CHECK_PROPERTY(cacheMaxResourceBytes);
CHECK_PROPERTY(origin);
CHECK_PROPERTY(width);
CHECK_PROPERTY(height);
CHECK_PROPERTY(colorType);
CHECK_PROPERTY(sampleCount);
CHECK_PROPERTY(isTextureable);
CHECK_PROPERTY(isMipMapped);
CHECK_PROPERTY(usesGLFBO0);
CHECK_PROPERTY(vkRTSupportsInputAttachment);
CHECK_PROPERTY(vulkanSecondaryCBCompatible);
CHECK_PROPERTY(isProtected);
}
#endif
return skgpu::ganesh::DrawDDL(sk_surface, ddl);
}
bool SkiaOutputDevice::Draw(
gpu::GraphiteSharedContext* graphite_shared_context,
SkSurface* sk_surface,
std::unique_ptr<skgpu::graphite::Recording> graphite_recording,
base::OnceClosure on_finished) {
CHECK(sk_surface);
CHECK(graphite_recording);
CHECK(graphite_shared_context);
skgpu::graphite::InsertRecordingInfo info;
info.fRecording = graphite_recording.get();
info.fTargetSurface = sk_surface;
if (on_finished) {
gpu::AddCleanupTaskForGraphiteRecording(std::move(on_finished), &info);
}
return graphite_shared_context->insertRecording(info);
}
} // namespace viz
|