76948d4faa
This isn't wired in anywhere yet. GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1937553002 Committed: https://skia.googlesource.com/skia/+/de5bf0cfeca908b81a28cc50065f7bc2da3d2fd1 Committed: https://skia.googlesource.com/skia/+/92605b35efa0155c44d24bd8415b4cc1db8831db Review-Url: https://codereview.chromium.org/1937553002
50 lines
1.6 KiB
C++
50 lines
1.6 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 GrTextureProxy_DEFINED
|
|
#define GrTextureProxy_DEFINED
|
|
|
|
#include "GrSurfaceProxy.h"
|
|
#include "GrTexture.h"
|
|
|
|
class GrTextureProvider;
|
|
|
|
// This class delays the acquisition of textures until they are actually required
|
|
class GrTextureProxy : public GrSurfaceProxy {
|
|
public:
|
|
// TODO: need to refine ownership semantics of 'srcData' if we're in completely
|
|
// deferred mode
|
|
static sk_sp<GrTextureProxy> Make(const GrSurfaceDesc&, SkBackingFit, SkBudgeted,
|
|
const void* srcData = nullptr, size_t rowBytes = 0);
|
|
static sk_sp<GrTextureProxy> Make(sk_sp<GrTexture>);
|
|
|
|
// TODO: add asRenderTargetProxy variants
|
|
GrTextureProxy* asTextureProxy() override { return this; }
|
|
const GrTextureProxy* asTextureProxy() const override { return this; }
|
|
|
|
// Actually instantiate the backing texture, if necessary
|
|
GrTexture* instantiate(GrTextureProvider* texProvider);
|
|
|
|
private:
|
|
GrTextureProxy(const GrSurfaceDesc& desc, SkBackingFit fit, SkBudgeted budgeted,
|
|
const void* /*srcData*/, size_t /*rowBytes*/)
|
|
: INHERITED(desc, fit, budgeted) {
|
|
// TODO: Handle 'srcData' here
|
|
}
|
|
|
|
// Wrapped version
|
|
GrTextureProxy(sk_sp<GrTexture> tex);
|
|
|
|
// For wrapped textures we store it here.
|
|
// For deferred proxies we will fill this in when we need to instantiate the deferred resource
|
|
sk_sp<GrTexture> fTexture;
|
|
|
|
typedef GrSurfaceProxy INHERITED;
|
|
};
|
|
|
|
#endif
|