Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | List of all members
skgpu::graphite::DawnErrorChecker Class Reference

#include <DawnErrorChecker.h>

Public Member Functions

 DawnErrorChecker (const DawnSharedContext *)
 
 ~DawnErrorChecker ()
 
SkEnumBitMask< DawnErrorTypepopErrorScopes ()
 

Detailed Description

Definition at line 37 of file DawnErrorChecker.h.

Constructor & Destructor Documentation

◆ DawnErrorChecker()

skgpu::graphite::DawnErrorChecker::DawnErrorChecker ( const DawnSharedContext sharedContext)
explicit

Definition at line 26 of file DawnErrorChecker.cpp.

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}
const wgpu::Device & device() const

◆ ~DawnErrorChecker()

skgpu::graphite::DawnErrorChecker::~DawnErrorChecker ( )

Definition at line 33 of file DawnErrorChecker.cpp.

33 {
34 [[maybe_unused]] auto err = this->popErrorScopes();
35 SkASSERT(!fArmed);
37}
#define SkASSERT(cond)
Definition SkAssert.h:116
SkEnumBitMask< DawnErrorType > popErrorScopes()

Member Function Documentation

◆ popErrorScopes()

SkEnumBitMask< DawnErrorType > skgpu::graphite::DawnErrorChecker::popErrorScopes ( )

Definition at line 39 of file DawnErrorChecker.cpp.

39 {
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}
#define SKGPU_LOG_E(fmt,...)
Definition Log.h:38
const int kNoError

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