4065d45d2d
This is a reland of2f9a5ea639
Original change's description: > Reland "Have a GrBackendFormat be stored on gpu proxies." > > This reverts commit919c9e77c3
. > > Reason for revert: Flutter change has landed and fixed memory issue. > > Original change's description: > > Revert "Have a GrBackendFormat be stored on gpu proxies." > > > > This reverts commit51b1c12bbc
. > > > > Reason for revert: reverting till flutter gets to 1.1 to fix build issues. > > > > Original change's description: > > > Have a GrBackendFormat be stored on gpu proxies. > > > > > > Bug: skia: > > > Change-Id: Iaf1fb24ab29a61d44e5fa59a5e0867ed02dcda90 > > > Reviewed-on: https://skia-review.googlesource.com/c/168021 > > > Reviewed-by: Brian Osman <brianosman@google.com> > > > Commit-Queue: Greg Daniel <egdaniel@google.com> > > > > TBR=egdaniel@google.com,bsalomon@google.com,brianosman@google.com > > > > Change-Id: I574fdc084ef5994596c51fb0d60423b5dc01b885 > > No-Presubmit: true > > No-Tree-Checks: true > > No-Try: true > > Bug: chromium:903701 chromium:903756 > > Reviewed-on: https://skia-review.googlesource.com/c/169835 > > Commit-Queue: Greg Daniel <egdaniel@google.com> > > Reviewed-by: Greg Daniel <egdaniel@google.com> > > TBR=egdaniel@google.com,bsalomon@google.com,brianosman@google.com > > Change-Id: Ifd9b6b8e194af9fb9258fa626644e76e6ecf090d > Bug: chromium:903701 chromium:903756 > Reviewed-on: https://skia-review.googlesource.com/c/170104 > Commit-Queue: Greg Daniel <egdaniel@google.com> > Reviewed-by: Greg Daniel <egdaniel@google.com> > Reviewed-by: Brian Osman <brianosman@google.com> Bug: chromium:903701 chromium:903756 Change-Id: Id1360067d8e928b0a4e1848dae8bc1e7f1994403 Reviewed-on: https://skia-review.googlesource.com/c/171660 Reviewed-by: Greg Daniel <egdaniel@google.com> Commit-Queue: Greg Daniel <egdaniel@google.com>
134 lines
4.9 KiB
C++
134 lines
4.9 KiB
C++
/*
|
|
* Copyright 2016 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef GrRenderTargetProxy_DEFINED
|
|
#define GrRenderTargetProxy_DEFINED
|
|
|
|
#include "GrSurfaceProxy.h"
|
|
#include "GrTypesPriv.h"
|
|
|
|
class GrResourceProvider;
|
|
class GrRenderTargetProxyPriv;
|
|
|
|
// This class delays the acquisition of RenderTargets until they are actually
|
|
// required
|
|
// Beware: the uniqueID of the RenderTargetProxy will usually be different than
|
|
// the uniqueID of the RenderTarget it represents!
|
|
class GrRenderTargetProxy : virtual public GrSurfaceProxy {
|
|
public:
|
|
GrRenderTargetProxy* asRenderTargetProxy() override { return this; }
|
|
const GrRenderTargetProxy* asRenderTargetProxy() const override { return this; }
|
|
|
|
// Actually instantiate the backing rendertarget, if necessary.
|
|
bool instantiate(GrResourceProvider*) override;
|
|
|
|
GrFSAAType fsaaType() const {
|
|
if (fSampleCnt <= 1) {
|
|
SkASSERT(!this->hasMixedSamples());
|
|
return GrFSAAType::kNone;
|
|
}
|
|
return this->hasMixedSamples() ? GrFSAAType::kMixedSamples : GrFSAAType::kUnifiedMSAA;
|
|
}
|
|
|
|
/*
|
|
* When instantiated does this proxy require a stencil buffer?
|
|
*/
|
|
void setNeedsStencil() { fNeedsStencil = true; }
|
|
bool needsStencil() const { return fNeedsStencil; }
|
|
|
|
/**
|
|
* Returns the number of samples/pixel in the stencil buffer (One if non-MSAA).
|
|
*/
|
|
int numStencilSamples() const { return fSampleCnt; }
|
|
|
|
/**
|
|
* Returns the number of samples/pixel in the color buffer (One if non-MSAA or mixed sampled).
|
|
*/
|
|
int numColorSamples() const {
|
|
return GrFSAAType::kMixedSamples == this->fsaaType() ? 1 : fSampleCnt;
|
|
}
|
|
|
|
int maxWindowRectangles(const GrCaps& caps) const;
|
|
|
|
// TODO: move this to a priv class!
|
|
bool refsWrappedObjects() const;
|
|
|
|
// Provides access to special purpose functions.
|
|
GrRenderTargetProxyPriv rtPriv();
|
|
const GrRenderTargetProxyPriv rtPriv() const;
|
|
|
|
protected:
|
|
friend class GrProxyProvider; // for ctors
|
|
friend class GrRenderTargetProxyPriv;
|
|
|
|
// Deferred version
|
|
GrRenderTargetProxy(const GrCaps&, const GrBackendFormat&, const GrSurfaceDesc&,
|
|
GrSurfaceOrigin, SkBackingFit, SkBudgeted, GrInternalSurfaceFlags);
|
|
|
|
// Lazy-callback version
|
|
// There are two main use cases for lazily-instantiated proxies:
|
|
// basic knowledge - width, height, config, samples, origin are known
|
|
// minimal knowledge - only config is known.
|
|
//
|
|
// The basic knowledge version is used for DDL where we know the type of proxy we are going to
|
|
// use, but we don't have access to the GPU yet to instantiate it.
|
|
//
|
|
// The minimal knowledge version is used for CCPR where we are generating an atlas but we do not
|
|
// know the final size until flush time.
|
|
GrRenderTargetProxy(LazyInstantiateCallback&&, LazyInstantiationType lazyType,
|
|
const GrBackendFormat&, const GrSurfaceDesc&, GrSurfaceOrigin,
|
|
SkBackingFit, SkBudgeted, GrInternalSurfaceFlags);
|
|
|
|
// Wrapped version
|
|
GrRenderTargetProxy(sk_sp<GrSurface>, GrSurfaceOrigin);
|
|
|
|
sk_sp<GrSurface> createSurface(GrResourceProvider*) const override;
|
|
|
|
private:
|
|
void setHasMixedSamples() {
|
|
fSurfaceFlags |= GrInternalSurfaceFlags::kMixedSampled;
|
|
}
|
|
bool hasMixedSamples() const { return fSurfaceFlags & GrInternalSurfaceFlags::kMixedSampled; }
|
|
|
|
void setSupportsWindowRects() {
|
|
fSurfaceFlags |= GrInternalSurfaceFlags::kWindowRectsSupport;
|
|
}
|
|
bool supportsWindowRects() const {
|
|
return fSurfaceFlags & GrInternalSurfaceFlags::kWindowRectsSupport;
|
|
}
|
|
|
|
void setGLRTFBOIDIs0() {
|
|
fSurfaceFlags |= GrInternalSurfaceFlags::kGLRTFBOIDIs0;
|
|
}
|
|
bool glRTFBOIDIs0() const {
|
|
return fSurfaceFlags & GrInternalSurfaceFlags::kGLRTFBOIDIs0;
|
|
}
|
|
|
|
|
|
size_t onUninstantiatedGpuMemorySize() const override;
|
|
SkDEBUGCODE(void onValidateSurface(const GrSurface*) override;)
|
|
|
|
// WARNING: Be careful when adding or removing fields here. ASAN is likely to trigger warnings
|
|
// when instantiating GrTextureRenderTargetProxy. The std::function in GrSurfaceProxy makes
|
|
// each class in the diamond require 16 byte alignment. Clang appears to layout the fields for
|
|
// each class to achieve the necessary alignment. However, ASAN checks the alignment of 'this'
|
|
// in the constructors, and always looks for the full 16 byte alignment, even if the fields in
|
|
// that particular class don't require it. Changing the size of this object can move the start
|
|
// address of other types, leading to this problem.
|
|
|
|
int fSampleCnt;
|
|
bool fNeedsStencil;
|
|
|
|
// For wrapped render targets the actual GrRenderTarget is stored in the GrIORefProxy class.
|
|
// For deferred proxies that pointer is filled in when we need to instantiate the
|
|
// deferred resource.
|
|
|
|
typedef GrSurfaceProxy INHERITED;
|
|
};
|
|
|
|
#endif
|