Index: src/gpu/SkGrPixelRef.cpp |
diff --git a/src/gpu/SkGrPixelRef.cpp b/src/gpu/SkGrPixelRef.cpp |
index 98819bfd73a4fab9e5a3bf152f2fd068b264d92f..dc5d7558f0d7a3e5c0294ec59f08f1622ef0ea16 100644 |
--- a/src/gpu/SkGrPixelRef.cpp |
+++ b/src/gpu/SkGrPixelRef.cpp |
@@ -94,7 +94,7 @@ static SkGrPixelRef* copyToTexturePixelRef(GrTexture* texture, SkBitmap::Config |
#endif |
SkGrPixelRef* pixelRef = SkNEW_ARGS(SkGrPixelRef, (dst)); |
- GrSafeUnref(dst); |
+ SkSafeUnref(dst); |
return pixelRef; |
} |
@@ -114,7 +114,7 @@ SkGrPixelRef::SkGrPixelRef(GrSurface* surface, bool transferCacheLock) { |
fSurface = surface; |
} |
fUnlock = transferCacheLock; |
- GrSafeRef(surface); |
+ SkSafeRef(surface); |
} |
SkGrPixelRef::~SkGrPixelRef() { |
@@ -125,7 +125,7 @@ SkGrPixelRef::~SkGrPixelRef() { |
context->unlockScratchTexture(texture); |
} |
} |
- GrSafeUnref(fSurface); |
+ SkSafeUnref(fSurface); |
} |
GrTexture* SkGrPixelRef::getTexture() { |