Sanitizing source files in Housekeeper-Nightly

git-svn-id: http://skia.googlecode.com/svn/trunk@13376 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
skia.committer@gmail.com 2014-02-09 03:02:01 +00:00
parent f053980016
commit f0b0cda76f

View File

@ -85,7 +85,7 @@ protected:
scaleM.setScale(1.1f, 0.4f);
ngon.transform(scaleM);
fPaths.addToTail(ngon);
// integer edges
fRects.addToTail(SkRect::MakeLTRB(5.f, 1.f, 30.f, 25.f));
// half-integer edges
@ -189,7 +189,7 @@ protected:
}
SkRect rect = *iter.get();
rect.offset(x, y);
rect.offset(x, y);
SkAutoTUnref<GrEffectRef> effect(GrConvexPolyEffect::CreateForAAFillRect(rect));
if (!effect) {
SkDEBUGFAIL("Couldn't create convex poly effect.");
@ -229,7 +229,7 @@ protected:
private:
SkTLList<SkPath> fPaths;
SkTLList<SkRect> fRects;
typedef GM INHERITED;
};