From 3582d3ee9fffdec715f5e4949a241ab08e6271ec Mon Sep 17 00:00:00 2001 From: bsalomon Date: Fri, 13 Feb 2015 14:20:05 -0800 Subject: Split out methods in GrGpuResource::CacheAccess that can be called outside of the cache. Review URL: https://codereview.chromium.org/923143002 --- src/gpu/GrGpu.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/gpu/GrGpu.cpp') diff --git a/src/gpu/GrGpu.cpp b/src/gpu/GrGpu.cpp index d23d4524a9..eef965e5b6 100644 --- a/src/gpu/GrGpu.cpp +++ b/src/gpu/GrGpu.cpp @@ -12,6 +12,7 @@ #include "GrBufferAllocPool.h" #include "GrContext.h" #include "GrDrawTargetCaps.h" +#include "GrGpuResourcePriv.h" #include "GrIndexBuffer.h" #include "GrResourceCache.h" #include "GrStencilBuffer.h" @@ -72,7 +73,7 @@ GrTexture* GrGpu::createTexture(const GrSurfaceDesc& desc, bool budgeted, } } if (!this->caps()->reuseScratchTextures() && !isRT) { - tex->cacheAccess().removeScratchKey(); + tex->resourcePriv().removeScratchKey(); } if (tex) { fStats.incTextureCreates(); -- cgit v1.2.3