Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
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)
50 : fError(DawnErrorType::kNoError)
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