aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrClipMaskCache.h
diff options
context:
space:
mode:
authorGravatar bsalomon <bsalomon@google.com>2014-10-16 13:41:43 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-10-16 13:41:43 -0700
commit427cf28861867c0ea9aafca3a23878ec4068ad99 (patch)
tree10e6dcb263f9ebc5f18ec70762778c4a118729ef /src/gpu/GrClipMaskCache.h
parentb227e37eae36ccf630c4baef00b1354d42b40fd1 (diff)
Remove AutoScratchTexture
Remove AST from GrClipMaskCache Remove AST from GrClipMaskManager BUG=skia:2889 R=robertphillips@google.com Review URL: https://codereview.chromium.org/663583002
Diffstat (limited to 'src/gpu/GrClipMaskCache.h')
-rw-r--r--src/gpu/GrClipMaskCache.h23
1 files changed, 12 insertions, 11 deletions
diff --git a/src/gpu/GrClipMaskCache.h b/src/gpu/GrClipMaskCache.h
index a2495f1566..19495f99b1 100644
--- a/src/gpu/GrClipMaskCache.h
+++ b/src/gpu/GrClipMaskCache.h
@@ -40,8 +40,8 @@ public:
// We could reuse the mask if bounds is a subset of last bounds. We'd have to communicate
// an offset to the caller.
- if (back->fLastMask.texture() &&
- !back->fLastMask.texture()->wasDestroyed() &&
+ if (back->fLastMask &&
+ !back->fLastMask->wasDestroyed() &&
back->fLastBound == bounds &&
back->fLastClipGenID == clipGenID) {
return true;
@@ -98,7 +98,7 @@ public:
GrClipStackFrame* back = (GrClipStackFrame*) fStack.back();
- return back->fLastMask.texture();
+ return back->fLastMask;
}
const GrTexture* getLastMask() const {
@@ -110,7 +110,7 @@ public:
GrClipStackFrame* back = (GrClipStackFrame*) fStack.back();
- return back->fLastMask.texture();
+ return back->fLastMask;
}
void acquireMask(int32_t clipGenID,
@@ -136,11 +136,11 @@ public:
GrClipStackFrame* back = (GrClipStackFrame*) fStack.back();
- if (NULL == back->fLastMask.texture()) {
+ if (NULL == back->fLastMask) {
return -1;
}
- return back->fLastMask.texture()->width();
+ return back->fLastMask->width();
}
int getLastMaskHeight() const {
@@ -152,11 +152,11 @@ public:
GrClipStackFrame* back = (GrClipStackFrame*) fStack.back();
- if (NULL == back->fLastMask.texture()) {
+ if (NULL == back->fLastMask) {
return -1;
}
- return back->fLastMask.texture()->height();
+ return back->fLastMask->height();
}
void getLastBound(SkIRect* bound) const {
@@ -206,7 +206,8 @@ private:
// HACK: set the last param to true to indicate that this request is at
// flush time and therefore we require a scratch texture with no pending IO operations.
- fLastMask.set(context, desc, GrContext::kApprox_ScratchTexMatch, /*flushing=*/true);
+ fLastMask.reset(context->refScratchTexture(desc, GrContext::kApprox_ScratchTexMatch,
+ /*flushing=*/true));
fLastBound = bound;
}
@@ -216,7 +217,7 @@ private:
GrTextureDesc desc;
- fLastMask.set(NULL, desc);
+ fLastMask.reset(NULL);
fLastBound.setEmpty();
}
@@ -224,7 +225,7 @@ private:
// The mask's width & height values are used by GrClipMaskManager to correctly scale the
// texture coords for the geometry drawn with this mask. TODO: This should be a cache key
// and not a hard ref to a texture.
- GrAutoScratchTexture fLastMask;
+ SkAutoTUnref<GrTexture> fLastMask;
// fLastBound stores the bounding box of the clip mask in clip-stack space. This rect is
// used by GrClipMaskManager to position a rect and compute texture coords for the mask.
SkIRect fLastBound;