File: DawnBackendContext.h

package info (click to toggle)
webkit2gtk 2.51.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 455,340 kB
  • sloc: cpp: 3,865,253; javascript: 197,710; ansic: 165,177; python: 49,241; asm: 21,868; ruby: 18,095; perl: 16,926; xml: 4,623; sh: 2,409; yacc: 2,356; java: 2,019; lex: 1,330; pascal: 372; makefile: 210
file content (77 lines) | stat: -rw-r--r-- 2,541 bytes parent folder | download | duplicates (25)
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
/*
 * Copyright 2022 Google LLC
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef skgpu_graphite_DawnBackendContext_DEFINED
#define skgpu_graphite_DawnBackendContext_DEFINED

#include "include/core/SkTypes.h"
#include "webgpu/webgpu_cpp.h"  // NO_G3_REWRITE

#include <memory>

namespace skgpu::graphite {

class Context;
struct ContextOptions;

/**
 * WebGPU needs to allow the main thread loop to run to detect GPU progress. Dawn native has a
 * function wgpu::Instance::ProcessEvents, not (currently) present in WebGPU, that can be used to
 * detect GPU progress.
 *
 * When compiling using Emscripten/WASM the -s ASYNCIFY option can be used to yield. E.g.:
 *
 * EM_ASYNC_JS(void, asyncSleep, (), {
 *                 await new Promise((resolve, _) = > {
 *                     setTimeout(resolve, 0);
 *                 })
 *             });
 *
 * WebGPUTickFunction(wgpu::Device&) { asyncSleep(); }
 *
 * If no DawnTickFunction is provided then the graphite::Context will be "non-yielding". This
 * implies the following restrictions on the Context:
 *
 * 1) SyncToCpu::kYes is disallowed as a parameter to Context::submit.
 * 2) The client must guarantee that GPU work has completed before destroying Context as Context
 *    cannot await the work completion in its destructor. Context reports whether it is awaiting
 *    GPU work completion via Context::hasUnfinishedGpuWork().
 *
 * Using a non-yielding Context makes it possible to build and run Graphite/Dawn on WebGPU without
 * -s ASYNCIFY.
 */
using DawnTickFunction = void(const wgpu::Instance& device);

#if !defined(__EMSCRIPTEN__)
SK_API inline void DawnNativeProcessEventsFunction(const wgpu::Instance& instance) {
    instance.ProcessEvents();
}
#endif

// The DawnBackendContext contains all of the base Dawn objects needed by the graphite Dawn
// backend. The client will create this object and pass it into the Context::MakeDawn factory call
// when setting up Skia.
struct SK_API DawnBackendContext {
    wgpu::Instance fInstance;
    wgpu::Device fDevice;
    wgpu::Queue fQueue;
    // See comment on DawnTickFunction.
    DawnTickFunction* fTick =
#if defined(__EMSCRIPTEN__)
            nullptr;
#else
            DawnNativeProcessEventsFunction;
#endif
};

namespace ContextFactory {
SK_API std::unique_ptr<Context> MakeDawn(const DawnBackendContext&, const ContextOptions&);
} // namespace ContextFactory

} // namespace skgpu::graphite

#endif // skgpu_graphite_DawnBackendContext_DEFINED