blob: 5195c8f23a584204f7ea89337a7af495c3b0cf5d [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.
*/
#include "src/gpu/ganesh/dawn/GrDawnRenderTarget.h"
#include "include/gpu/GrBackendSurface.h"
#include "src/gpu/ganesh/dawn/GrDawnGpu.h"
#include "src/gpu/ganesh/dawn/GrDawnUtil.h"
GrDawnRenderTarget::GrDawnRenderTarget(GrDawnGpu* gpu,
SkISize dimensions,
int sampleCnt,
const GrDawnRenderTargetInfo& info,
std::string_view label)
: GrSurface(gpu, dimensions, GrProtected::kNo, label)
, GrRenderTarget(gpu, dimensions, sampleCnt, GrProtected::kNo, label)
, fInfo(info) {}
sk_sp<GrDawnRenderTarget> GrDawnRenderTarget::MakeWrapped(GrDawnGpu* gpu,
SkISize dimensions,
int sampleCnt,
const GrDawnRenderTargetInfo& info,
std::string_view label) {
sk_sp<GrDawnRenderTarget> rt(
new GrDawnRenderTarget(gpu, dimensions, sampleCnt, info, label));
rt->registerWithCacheWrapped(GrWrapCacheable::kNo);
return rt;
}
size_t GrDawnRenderTarget::onGpuMemorySize() const {
// The plus 1 is to account for the resolve texture or if not using msaa the RT itself
int numSamples = this->numSamples() + 1;
return GrSurface::ComputeSize(this->backendFormat(), this->dimensions(), numSamples,
GrMipmapped::kNo);
}
bool GrDawnRenderTarget::completeStencilAttachment(GrAttachment* stencil, bool useMSAASurface) {
SkASSERT(useMSAASurface == (this->numSamples() > 1));
return true;
}
GrDawnRenderTarget::~GrDawnRenderTarget() {
}
void GrDawnRenderTarget::onRelease() {
INHERITED::onRelease();
}
void GrDawnRenderTarget::onAbandon() {
INHERITED::onAbandon();
}
GrBackendRenderTarget GrDawnRenderTarget::getBackendRenderTarget() const {
return GrBackendRenderTarget(this->width(), this->height(), this->numSamples(),
this->numSamples(), fInfo);
}
GrBackendFormat GrDawnRenderTarget::backendFormat() const {
return GrBackendFormat::MakeDawn(fInfo.fFormat);
}