| Index: src/gpu/GrFixedClip.cpp
|
| diff --git a/src/gpu/GrClip.cpp b/src/gpu/GrFixedClip.cpp
|
| similarity index 84%
|
| rename from src/gpu/GrClip.cpp
|
| rename to src/gpu/GrFixedClip.cpp
|
| index f89a366963b07926180426841cdfa69de3c29662..c42214b2711e2cff55d20301a3c12e44a3c37189 100644
|
| --- a/src/gpu/GrClip.cpp
|
| +++ b/src/gpu/GrFixedClip.cpp
|
| @@ -5,19 +5,11 @@
|
| * found in the LICENSE file.
|
| */
|
|
|
| -#include "GrClip.h"
|
| +#include "GrFixedClip.h"
|
|
|
| #include "GrAppliedClip.h"
|
| #include "GrDrawContext.h"
|
|
|
| -void GrNoClip::getConservativeBounds(int width, int height, SkIRect* devResult,
|
| - bool* isIntersectionOfRects) const {
|
| - devResult->setXYWH(0, 0, width, height);
|
| - if (isIntersectionOfRects) {
|
| - *isIntersectionOfRects = true;
|
| - }
|
| -}
|
| -
|
| bool GrFixedClip::quickContains(const SkRect& rect) const {
|
| if (fHasStencilClip) {
|
| return false;
|
|
|