blob: d94fd24f4984a82782770583acd1b403a2f3bb61 [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/dawn/GrDawnTextureRenderTarget.h"
#include "include/core/SkTraceMemoryDump.h"
#include "include/gpu/GrContext.h"
#include "src/gpu/GrTexturePriv.h"
#include "src/gpu/dawn/GrDawnGpu.h"
GrDawnTextureRenderTarget::GrDawnTextureRenderTarget(GrDawnGpu* gpu,
const SkISize& dimensions,
GrPixelConfig config,
wgpu::TextureView textureView,
int sampleCnt,
const GrDawnImageInfo& info,
GrMipMapsStatus mipMapsStatus)
: GrSurface(gpu, dimensions, config, GrProtected::kNo)
, GrDawnTexture(gpu, dimensions, config, textureView, info, mipMapsStatus)
, GrDawnRenderTarget(gpu, dimensions, config, sampleCnt, info) {}
bool GrDawnTextureRenderTarget::canAttemptStencilAttachment() const {
return true;
}
size_t GrDawnTextureRenderTarget::onGpuMemorySize() const {
const GrCaps& caps = *this->getGpu()->caps();
return GrSurface::ComputeSize(caps, this->backendFormat(), this->dimensions(),
1, // FIXME: for MSAA
this->texturePriv().mipMapped());
}