OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 | 8 |
9 #include "GrCopySurfaceBatch.h" | 9 #include "GrCopySurfaceBatch.h" |
10 | 10 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 | 66 |
67 SkIRect clippedSrcRect; | 67 SkIRect clippedSrcRect; |
68 SkIPoint clippedDstPoint; | 68 SkIPoint clippedDstPoint; |
69 // If the rect is outside the src or dst then we've already succeeded. | 69 // If the rect is outside the src or dst then we've already succeeded. |
70 if (!clip_srcrect_and_dstpoint(dst, | 70 if (!clip_srcrect_and_dstpoint(dst, |
71 src, | 71 src, |
72 srcRect, | 72 srcRect, |
73 dstPoint, | 73 dstPoint, |
74 &clippedSrcRect, | 74 &clippedSrcRect, |
75 &clippedDstPoint)) { | 75 &clippedDstPoint)) { |
76 return NULL; | 76 return nullptr; |
77 } | 77 } |
78 return new GrCopySurfaceBatch(dst, src, clippedSrcRect, clippedDstPoint); | 78 return new GrCopySurfaceBatch(dst, src, clippedSrcRect, clippedDstPoint); |
79 } | 79 } |
OLD | NEW |