blob: 432d00854fef568ca0184db1bd8cf2210a95c521 [file] [log] [blame]
Robert Phillips84a81202016-11-04 11:59:10 -04001/*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "GrTextureRenderTargetProxy.h"
9
10// Deferred version
Robert Phillipsc787e492017-02-28 11:26:32 -050011// This class is virtually derived from GrSurfaceProxy (via both GrTextureProxy and
Robert Phillips84a81202016-11-04 11:59:10 -040012// GrRenderTargetProxy) so its constructor must be explicitly called.
13GrTextureRenderTargetProxy::GrTextureRenderTargetProxy(const GrCaps& caps,
14 const GrSurfaceDesc& desc,
15 SkBackingFit fit,
Robert Phillipsc787e492017-02-28 11:26:32 -050016 SkBudgeted budgeted,
17 uint32_t flags)
18 : GrSurfaceProxy(desc, fit, budgeted, flags)
19 // for now textures w/ data are always wrapped
20 , GrTextureProxy(desc, fit, budgeted, nullptr, 0, flags)
21 , GrRenderTargetProxy(caps, desc, fit, budgeted, flags) {
Robert Phillips84a81202016-11-04 11:59:10 -040022}
23
24// Wrapped version
Robert Phillipsc787e492017-02-28 11:26:32 -050025// This class is virtually derived from GrSurfaceProxy (via both GrTextureProxy and
Robert Phillips84a81202016-11-04 11:59:10 -040026// GrRenderTargetProxy) so its constructor must be explicitly called.
Robert Phillips37430132016-11-09 06:50:43 -050027GrTextureRenderTargetProxy::GrTextureRenderTargetProxy(sk_sp<GrSurface> surf)
28 : GrSurfaceProxy(surf, SkBackingFit::kExact)
29 , GrTextureProxy(sk_ref_sp(surf->asTexture()))
30 , GrRenderTargetProxy(sk_ref_sp(surf->asRenderTarget())) {
31 SkASSERT(surf->asTexture());
32 SkASSERT(surf->asRenderTarget());
Robert Phillips84a81202016-11-04 11:59:10 -040033}
34
35size_t GrTextureRenderTargetProxy::onGpuMemorySize() const {
36 if (fTarget) {
37 return fTarget->gpuMemorySize();
38 }
39
40 // TODO: do we have enough information to improve this worst case estimate?
Robert Phillipsb4460882016-11-17 14:43:51 -050041 return GrSurface::ComputeSize(fDesc, fDesc.fSampleCnt+1, true, SkBackingFit::kApprox == fFit);
Robert Phillips84a81202016-11-04 11:59:10 -040042}
43