skia2/tools/sk_app/DawnWindowContext.h
Kevin Lubick 7d4e12544e [dawn] Clean up include paths and dawn_native namespace
Change-Id: I343d878b2ff3b1abf52007c7612b01c53731566b
Bug: dawn:824,dawn:1275,skia:12512
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/516916
Reviewed-by: Greg Daniel <egdaniel@google.com>
Commit-Queue: Kevin Lubick <kjlubick@google.com>
2022-03-07 14:38:55 +00:00

55 lines
1.7 KiB
C++

/*
* Copyright 2019 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef DawnWindowContext_DEFINED
#define DawnWindowContext_DEFINED
#include "include/core/SkRefCnt.h"
#include "include/core/SkSurface.h"
#include "tools/sk_app/WindowContext.h"
#include "webgpu/webgpu_cpp.h"
#include "dawn/native/DawnNative.h"
#include "dawn/dawn_wsi.h"
namespace sk_app {
class DawnWindowContext : public WindowContext {
public:
DawnWindowContext(const DisplayParams&, wgpu::TextureFormat swapChainFormat);
~DawnWindowContext() override;
sk_sp<SkSurface> getBackbufferSurface() override;
void swapBuffers() override;
bool isValid() override { return SkToBool(fDevice.Get()); }
void resize(int w, int h) override;
void setDisplayParams(const DisplayParams& params) override;
protected:
bool isGpuContext() override { return true; }
void initializeContext(int width, int height);
wgpu::Device createDevice(wgpu::BackendType type);
virtual wgpu::Device onInitializeContext() = 0;
virtual void onDestroyContext() = 0;
virtual void onSwapBuffers() = 0;
virtual GrSurfaceOrigin getRTOrigin() const { return kTopLeft_GrSurfaceOrigin; }
void destroyContext();
virtual DawnSwapChainImplementation createSwapChainImplementation( int width, int height,
const DisplayParams& params) = 0;
sk_sp<SkSurface> fSurface;
DawnSwapChainImplementation fSwapChainImplementation;
wgpu::TextureFormat fSwapChainFormat;
wgpu::SwapChain fSwapChain;
wgpu::Device fDevice;
std::unique_ptr<dawn::native::Instance> fInstance;
};
} // namespace sk_app
#endif