diff options
author | Greg Daniel <egdaniel@google.com> | 2018-05-03 15:28:58 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-05-03 20:13:02 +0000 |
commit | ba2c826038a77046b99b9d2583e2eae70087ceed (patch) | |
tree | e33bb5afe218bccc5f0b64c402595be5dd94314f /include | |
parent | 3288d63918da3387e2e5fe4900fd7d30d4184ecb (diff) |
Implement canCopySurface for GrMock and GrMtl.
Bug: skia:
Change-Id: I60730bacb03b43e872c68fd7eb8e845ac0910f67
Reviewed-on: https://skia-review.googlesource.com/125730
Commit-Queue: Greg Daniel <egdaniel@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
Auto-Submit: Greg Daniel <egdaniel@google.com>
Reviewed-by: Robert Phillips <robertphillips@google.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/gpu/GrCaps.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/gpu/GrCaps.h b/include/gpu/GrCaps.h index b88146f374..0e81e236ef 100644 --- a/include/gpu/GrCaps.h +++ b/include/gpu/GrCaps.h @@ -236,10 +236,8 @@ public: /** * Returns whether or not we will be able to do a copy given the passed in params */ - virtual bool canCopySurface(const GrSurfaceProxy* /*dst*/, const GrSurfaceProxy* /*src*/, - const SkIRect& /*srcRect*/, const SkIPoint& /*dstPoint*/) const { - return true; - } + virtual bool canCopySurface(const GrSurfaceProxy* dst, const GrSurfaceProxy* src, + const SkIRect& srcRect, const SkIPoint& dstPoint) const = 0; /** * This is can be called before allocating a texture to be a dst for copySurface. This is only |