blob: 62c5ec4863e6f3bf3dc2631994a7a658b09fbb9b [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 GrDawnRenderTarget_DEFINED
#define GrDawnRenderTarget_DEFINED
#include "include/gpu/dawn/GrDawnTypes.h"
#include "src/gpu/GrRenderTarget.h"
class GrDawnGpu;
class GrDawnRenderTarget: public GrRenderTarget {
public:
static sk_sp<GrDawnRenderTarget> MakeWrapped(GrDawnGpu*,
SkISize dimensions,
int sampleCnt,
const GrDawnRenderTargetInfo&);
~GrDawnRenderTarget() override;
bool canAttemptStencilAttachment() const override {
return true;
}
GrBackendRenderTarget getBackendRenderTarget() const override;
GrBackendFormat backendFormat() const override;
wgpu::TextureView textureView() const { return fInfo.fTextureView; }
protected:
GrDawnRenderTarget(GrDawnGpu* gpu,
SkISize dimensions,
int sampleCnt,
const GrDawnRenderTargetInfo& info);
void onAbandon() override;
void onRelease() override;
void onSetRelease(sk_sp<GrRefCntedCallback> releaseHelper) override {}
// This accounts for the texture's memory and any MSAA renderbuffer's memory.
size_t onGpuMemorySize() const override;
bool completeStencilAttachment() override;
GrDawnRenderTargetInfo fInfo;
using INHERITED = GrRenderTarget;
};
#endif