Index: src/gpu/GrClipMaskCache.h |
diff --git a/src/gpu/GrClipMaskCache.h b/src/gpu/GrClipMaskCache.h |
index 9a091c4b3a408a80bbb5d58e69fce7e9d47b64bf..330a1f215f072d01f31881259c2dc8840cfe1598 100644 |
--- a/src/gpu/GrClipMaskCache.h |
+++ b/src/gpu/GrClipMaskCache.h |
@@ -118,7 +118,7 @@ public: |
void acquireMask(int32_t clipGenID, |
const GrTextureDesc& desc, |
- const GrIRect& bound) { |
+ const SkIRect& bound) { |
if (fStack.empty()) { |
GrAssert(false); |
@@ -162,7 +162,7 @@ public: |
return back->fLastMask.texture()->height(); |
} |
- void getLastBound(GrIRect* bound) const { |
+ void getLastBound(SkIRect* bound) const { |
if (fStack.empty()) { |
GrAssert(false); |
@@ -203,7 +203,7 @@ private: |
void acquireMask(GrContext* context, |
int32_t clipGenID, |
const GrTextureDesc& desc, |
- const GrIRect& bound) { |
+ const SkIRect& bound) { |
fLastClipGenID = clipGenID; |
@@ -227,7 +227,7 @@ private: |
GrAutoScratchTexture 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. |
- GrIRect fLastBound; |
+ SkIRect fLastBound; |
}; |
GrContext* fContext; |