Replaced TextureCacheEntry with GrTexture* and a back pointer to GrResourceEntry (in GrTexture)
http://codereview.appspot.com/6460089/
git-svn-id: http://skia.googlecode.com/svn/trunk@5122 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/gpu/GrStencilBuffer.h b/src/gpu/GrStencilBuffer.h
index 649e130..f83590a 100644
--- a/src/gpu/GrStencilBuffer.h
+++ b/src/gpu/GrStencilBuffer.h
@@ -84,7 +84,7 @@
, fLastClipData()
, fLastClipWidth(-1)
, fLastClipHeight(-1)
- , fCacheEntry(NULL)
+ , fHoldingLock(false)
, fRTAttachmentCnt(0) {
}
@@ -109,7 +109,7 @@
int fLastClipWidth;
int fLastClipHeight;
- GrResourceEntry* fCacheEntry;
+ bool fHoldingLock;
int fRTAttachmentCnt;
typedef GrResource INHERITED;