2016-05-04 19:47:41 +00:00
|
|
|
/*
|
|
|
|
* 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 "GrRenderTarget.h"
|
|
|
|
#include "GrSurfaceProxy.h"
|
|
|
|
#include "GrTypes.h"
|
|
|
|
|
|
|
|
class GrTextureProvider;
|
|
|
|
|
|
|
|
// 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 : public GrSurfaceProxy {
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* The caller gets the creation ref.
|
|
|
|
*/
|
|
|
|
static sk_sp<GrRenderTargetProxy> Make(const GrCaps&, const GrSurfaceDesc&,
|
|
|
|
SkBackingFit, SkBudgeted);
|
2016-08-10 18:09:07 +00:00
|
|
|
static sk_sp<GrRenderTargetProxy> Make(const GrCaps&, sk_sp<GrRenderTarget>);
|
2016-05-04 19:47:41 +00:00
|
|
|
|
|
|
|
// TODO: add asTextureProxy variants
|
|
|
|
GrRenderTargetProxy* asRenderTargetProxy() override { return this; }
|
|
|
|
const GrRenderTargetProxy* asRenderTargetProxy() const override { return this; }
|
|
|
|
|
|
|
|
// Actually instantiate the backing rendertarget, if necessary.
|
|
|
|
GrRenderTarget* instantiate(GrTextureProvider* texProvider);
|
|
|
|
|
2016-08-10 18:09:07 +00:00
|
|
|
bool isStencilBufferMultisampled() const { return fDesc.fSampleCnt > 0; }
|
2016-05-04 19:47:41 +00:00
|
|
|
|
|
|
|
/**
|
2016-08-10 18:09:07 +00:00
|
|
|
* For our purposes, "Mixed Sampled" means the stencil buffer is multisampled but the color
|
|
|
|
* buffer is not.
|
2016-05-04 19:47:41 +00:00
|
|
|
*/
|
2016-10-28 17:25:24 +00:00
|
|
|
bool isMixedSampled() const { return fFlags & GrRenderTarget::Flags::kMixedSampled; }
|
2016-05-04 19:47:41 +00:00
|
|
|
|
|
|
|
/**
|
2016-08-10 18:09:07 +00:00
|
|
|
* "Unified Sampled" means the stencil and color buffers are both multisampled.
|
2016-05-04 19:47:41 +00:00
|
|
|
*/
|
2016-08-10 18:09:07 +00:00
|
|
|
bool isUnifiedMultisampled() const { return fDesc.fSampleCnt > 0 && !this->isMixedSampled(); }
|
2016-05-04 19:47:41 +00:00
|
|
|
|
|
|
|
/**
|
2016-08-10 18:09:07 +00:00
|
|
|
* Returns the number of samples/pixel in the stencil buffer (Zero if non-MSAA).
|
2016-05-04 19:47:41 +00:00
|
|
|
*/
|
2016-08-10 18:09:07 +00:00
|
|
|
int numStencilSamples() const { return fDesc.fSampleCnt; }
|
2016-05-04 19:47:41 +00:00
|
|
|
|
|
|
|
/**
|
2016-08-10 18:09:07 +00:00
|
|
|
* Returns the number of samples/pixel in the color buffer (Zero if non-MSAA or mixed sampled).
|
2016-05-04 19:47:41 +00:00
|
|
|
*/
|
2016-08-10 18:09:07 +00:00
|
|
|
int numColorSamples() const { return this->isMixedSampled() ? 0 : fDesc.fSampleCnt; }
|
2016-05-04 19:47:41 +00:00
|
|
|
|
2016-10-28 17:25:24 +00:00
|
|
|
GrRenderTarget::Flags testingOnly_getFlags() const;
|
|
|
|
|
|
|
|
GrRenderTargetOpList* getLastRenderTargetOpList() {
|
|
|
|
return (GrRenderTargetOpList*) this->getLastOpList();
|
|
|
|
}
|
|
|
|
|
|
|
|
SkDEBUGCODE(void validate(GrContext*) const;)
|
2016-08-10 18:09:07 +00:00
|
|
|
|
2016-05-04 19:47:41 +00:00
|
|
|
private:
|
2016-08-10 18:09:07 +00:00
|
|
|
// Deferred version
|
|
|
|
GrRenderTargetProxy(const GrCaps&, const GrSurfaceDesc&, SkBackingFit, SkBudgeted);
|
2016-05-04 19:47:41 +00:00
|
|
|
|
|
|
|
// Wrapped version
|
2016-08-10 18:09:07 +00:00
|
|
|
GrRenderTargetProxy(const GrCaps&, sk_sp<GrRenderTarget> rt);
|
2016-05-04 19:47:41 +00:00
|
|
|
|
2016-11-01 21:28:40 +00:00
|
|
|
size_t onGpuMemorySize() const override;
|
|
|
|
|
2016-10-28 17:25:24 +00:00
|
|
|
// 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.
|
2016-05-04 19:47:41 +00:00
|
|
|
|
2016-08-10 18:09:07 +00:00
|
|
|
// These don't usually get computed until the render target is instantiated, but the render
|
|
|
|
// target proxy may need to answer queries about it before then. And since in the deferred case
|
|
|
|
// we know the newly created render target will be internal, we are able to precompute what the
|
|
|
|
// flags will ultimately end up being. In the wrapped case we just copy the wrapped
|
2016-05-04 19:47:41 +00:00
|
|
|
// rendertarget's info here.
|
2016-10-28 17:25:24 +00:00
|
|
|
GrRenderTarget::Flags fFlags;
|
2016-05-04 19:47:41 +00:00
|
|
|
|
|
|
|
typedef GrSurfaceProxy INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|