Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / skia / tools / gpu / dawn / DawnTestContext.h
1 /*
2  * Copyright 2019 Google Inc.
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
8 #ifndef DawnTestContext_DEFINED
9 #define DawnTestContext_DEFINED
10
11 #include "tools/gpu/TestContext.h"
12 #include "dawn/native/DawnNative.h"
13
14 #ifdef SK_DAWN
15
16 namespace sk_gpu_test {
17 class DawnTestContext : public TestContext {
18 public:
19     virtual GrBackend backend() override { return GrBackendApi::kDawn; }
20
21     const wgpu::Device& getDevice() {
22         return fDevice;
23     }
24
25 protected:
26     DawnTestContext(std::unique_ptr<dawn::native::Instance> instance, const wgpu::Device& device)
27         : fInstance(std::move(instance)), fDevice(device) {}
28
29     std::unique_ptr<dawn::native::Instance> fInstance;
30     wgpu::Device fDevice;
31
32 private:
33     using INHERITED = TestContext;
34 };
35
36 /**
37  * Creates Dawn context object bound to the Dawn library.
38  */
39 DawnTestContext* CreatePlatformDawnTestContext(DawnTestContext*);
40
41 }  // namespace sk_gpu_test
42
43 #endif
44
45 #endif