aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/private/GrRenderTargetProxy.h
diff options
context:
space:
mode:
authorGravatar Robert Phillips <robertphillips@google.com>2016-11-02 10:23:32 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2016-11-02 16:06:25 +0000
commitabacf0978fc06f88278d073655dff6ff8503a612 (patch)
tree2e6129c1daf6ca58e4719d955c284820f084e2a9 /include/private/GrRenderTargetProxy.h
parent8bc06d07f57ede17ccabfa38f1d7e31bbf311ab5 (diff)
Update ProxyTests
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=4306 Change-Id: I0753047eeda71a22b6126f932fc14dd242c5a2e7 Reviewed-on: https://skia-review.googlesource.com/4306 Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Robert Phillips <robertphillips@google.com>
Diffstat (limited to 'include/private/GrRenderTargetProxy.h')
-rw-r--r--include/private/GrRenderTargetProxy.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/private/GrRenderTargetProxy.h b/include/private/GrRenderTargetProxy.h
index 27e0492d9e..c124dddd79 100644
--- a/include/private/GrRenderTargetProxy.h
+++ b/include/private/GrRenderTargetProxy.h
@@ -25,7 +25,7 @@ public:
*/
static sk_sp<GrRenderTargetProxy> Make(const GrCaps&, const GrSurfaceDesc&,
SkBackingFit, SkBudgeted);
- static sk_sp<GrRenderTargetProxy> Make(const GrCaps&, sk_sp<GrRenderTarget>);
+ static sk_sp<GrRenderTargetProxy> Make(sk_sp<GrRenderTarget>);
// TODO: add asTextureProxy variants
GrRenderTargetProxy* asRenderTargetProxy() override { return this; }
@@ -70,7 +70,7 @@ private:
GrRenderTargetProxy(const GrCaps&, const GrSurfaceDesc&, SkBackingFit, SkBudgeted);
// Wrapped version
- GrRenderTargetProxy(const GrCaps&, sk_sp<GrRenderTarget> rt);
+ GrRenderTargetProxy(sk_sp<GrRenderTarget> rt);
size_t onGpuMemorySize() const override;