diff options
author | bsalomon <bsalomon@google.com> | 2014-11-25 07:41:12 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-11-25 07:41:12 -0800 |
commit | a2c2323005fb22e564426f4ed86adaa6d213aba1 (patch) | |
tree | 03872273e7a1eb533a311746a6dc43c928295009 /src/gpu/gl | |
parent | 821e3522380ee8995da15f9c9bec9e8b21f4a809 (diff) |
Remove GrSurface::isSameAs
Review URL: https://codereview.chromium.org/753783003
Diffstat (limited to 'src/gpu/gl')
-rw-r--r-- | src/gpu/gl/GrGpuGL.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpu/gl/GrGpuGL.cpp b/src/gpu/gl/GrGpuGL.cpp index bb40839f48..8bf35c1690 100644 --- a/src/gpu/gl/GrGpuGL.cpp +++ b/src/gpu/gl/GrGpuGL.cpp @@ -2429,7 +2429,7 @@ bool GrGpuGL::copySurface(GrSurface* dst, SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX, dstPoint.fY, srcRect.width(), srcRect.height()); bool selfOverlap = false; - if (dst->surfacePriv().isSameAs(src)) { + if (dst == src) { selfOverlap = SkIRect::IntersectsNoEmptyCheck(dstRect, srcRect); } @@ -2503,7 +2503,7 @@ bool GrGpuGL::canCopySurface(const GrSurface* dst, return true; } if (can_blit_framebuffer(dst, src, this, &wouldNeedTempFBO) && !wouldNeedTempFBO) { - if (dst->surfacePriv().isSameAs(src)) { + if (dst == src) { SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX, dstPoint.fY, srcRect.width(), srcRect.height()); if(!SkIRect::IntersectsNoEmptyCheck(dstRect, srcRect)) { |