blob: 110af1f08aa0446524f9d473c6cb51c10c14a587 [file] [log] [blame]
/*
* 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 GrDawnStencil_DEFINED
#define GrDawnStencil_DEFINED
#include "src/gpu/GrStencilAttachment.h"
#include "dawn/webgpu_cpp.h"
class GrDawnGpu;
class GrDawnStencilAttachment : public GrStencilAttachment {
public:
static GrDawnStencilAttachment* Create(GrDawnGpu* gpu, int width, int height,
int sampleCnt);
~GrDawnStencilAttachment() override;
wgpu::TextureView view() const { return fView; }
protected:
void onRelease() override;
void onAbandon() override;
private:
size_t onGpuMemorySize() const override;
GrDawnStencilAttachment(GrDawnGpu* gpu, int width, int height, int bits, int samples,
wgpu::Texture texture, wgpu::TextureView view);
GrDawnGpu* getDawnGpu() const;
wgpu::Texture fTexture;
wgpu::TextureView fView;
typedef GrStencilAttachment INHERITED;
};
#endif