Flutter Engine
The Flutter Engine
DawnErrorChecker.cpp
Go to the documentation of this file.
1/*
2 * Copyright 2023 Google LLC
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
9
14
15namespace skgpu::graphite {
16namespace {
17
18constexpr const char* kErrorScopeNames[] = {"validation", "out-of-memory", "internal"};
19constexpr DawnErrorType kErrorScopeTypes[] = {
21static_assert(std::size(kErrorScopeNames) == std::size(kErrorScopeTypes));
22constexpr int kScopeCount = std::size(kErrorScopeTypes);
23
24} // namespace
25
27 : fArmed(true), fSharedContext(sharedContext) {
28 fSharedContext->device().PushErrorScope(wgpu::ErrorFilter::Validation);
29 fSharedContext->device().PushErrorScope(wgpu::ErrorFilter::OutOfMemory);
30 fSharedContext->device().PushErrorScope(wgpu::ErrorFilter::Internal);
31}
32
34 [[maybe_unused]] auto err = this->popErrorScopes();
35 SkASSERT(!fArmed);
37}
38
40 if (!fArmed) {
42 }
43
44 struct ErrorState {
46 int fScopeIdx;
47 DawnAsyncWait fWait;
48
49 ErrorState(const DawnSharedContext* sharedContext)
51 , fScopeIdx(kScopeCount - 1)
52 , fWait(sharedContext) {}
53 } errorState(fSharedContext);
54
55 wgpu::ErrorCallback errorCallback = [](WGPUErrorType status, const char* msg, void* userData) {
56 ErrorState* errorState = static_cast<ErrorState*>(userData);
57 if (status != WGPUErrorType_NoError) {
58 SkASSERT(errorState->fScopeIdx >= 0);
59 const char* errorScopeName = kErrorScopeNames[errorState->fScopeIdx];
60 SKGPU_LOG_E("Failed in error scope (%s): %s", errorScopeName, msg);
61 errorState->fError |= kErrorScopeTypes[errorState->fScopeIdx];
62 }
63 errorState->fScopeIdx--;
64 errorState->fWait.signal();
65 };
66
67 // Pop all three error scopes:
68 // Internal
69 fSharedContext->device().PopErrorScope(errorCallback, &errorState);
70 errorState.fWait.busyWait();
71 errorState.fWait.reset();
72
73 // OutOfMemory
74 fSharedContext->device().PopErrorScope(errorCallback, &errorState);
75 errorState.fWait.busyWait();
76 errorState.fWait.reset();
77
78 // Validation
79 fSharedContext->device().PopErrorScope(errorCallback, &errorState);
80 errorState.fWait.busyWait();
81
82 fArmed = false;
83 return errorState.fError;
84}
85
86} // namespace skgpu::graphite
#define SKGPU_LOG_E(fmt,...)
Definition: Log.h:38
#define SkASSERT(cond)
Definition: SkAssert.h:116
DawnErrorChecker(const DawnSharedContext *)
SkEnumBitMask< DawnErrorType > popErrorScopes()
const wgpu::Device & device() const
it will be possible to load the file into Perfetto s trace viewer disable asset Prevents usage of any non test fonts unless they were explicitly Loaded via prefetched default font Indicates whether the embedding started a prefetch of the default font manager before creating the engine run In non interactive keep the shell running after the Dart script has completed enable serial On low power devices with low core running concurrent GC tasks on threads can cause them to contend with the UI thread which could potentially lead to jank This option turns off all concurrent GC activities domain network JSON encoded network policy per domain This overrides the DisallowInsecureConnections switch Embedder can specify whether to allow or disallow insecure connections at a domain level old gen heap size
Definition: switches.h:259