Result of running tools/sanitize_source_files.py (which was added in https://codereview.appspot.com/6465078/)
This CL is part I of IV (I broke down the 1280 files into 4 CLs).
Review URL: https://codereview.appspot.com/6485054
git-svn-id: http://skia.googlecode.com/svn/trunk@5262 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/include/gpu/GrClipData.h b/include/gpu/GrClipData.h
index c9d934d..0cf7022 100644
--- a/include/gpu/GrClipData.h
+++ b/include/gpu/GrClipData.h
@@ -19,7 +19,7 @@
/**
* GrClipData encapsulates the information required to construct the clip
* masks. 'fOrigin' is only non-zero when saveLayer has been called
- * with an offset bounding box. The clips in 'fClipStack' are in
+ * with an offset bounding box. The clips in 'fClipStack' are in
* device coordinates (i.e., they have been translated by -fOrigin w.r.t.
* the canvas' device coordinates).
*/
@@ -28,7 +28,7 @@
const SkClipStack* fClipStack;
SkIPoint fOrigin;
- GrClipData()
+ GrClipData()
: fClipStack(NULL) {
fOrigin.setZero();
}
@@ -45,11 +45,11 @@
return fClipStack == other.fClipStack;
}
- bool operator!=(const GrClipData& other) const {
- return !(*this == other);
+ bool operator!=(const GrClipData& other) const {
+ return !(*this == other);
}
- void getConservativeBounds(const GrSurface* surface,
+ void getConservativeBounds(const GrSurface* surface,
GrIRect* devResult,
bool* isIntersectionOfRects = NULL) const;
};