Sanitizing source files in Housekeeper-Nightly

git-svn-id: http://skia.googlecode.com/svn/trunk@9135 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
skia.committer@gmail.com 2013-05-15 07:01:09 +00:00
parent ba46534869
commit eafdf126d4
2 changed files with 3 additions and 3 deletions

View File

@ -53,7 +53,7 @@ protected:
canvas->restore();
canvas->save();
canvas->translate(160.0f + i*0.125f,
canvas->translate(160.0f + i*0.125f,
i*40.0f + i*0.125f);
DrawSquares(canvas, white);

View File

@ -681,8 +681,8 @@ static void setStrokeRectStrip(GrPoint verts[10], GrRect rect,
}
static bool isIRect(const GrRect& r) {
return SkScalarIsInt(r.fLeft) && SkScalarIsInt(r.fTop) &&
SkScalarIsInt(r.fRight) && SkScalarIsInt(r.fBottom);
return SkScalarIsInt(r.fLeft) && SkScalarIsInt(r.fTop) &&
SkScalarIsInt(r.fRight) && SkScalarIsInt(r.fBottom);
}
static bool apply_aa_to_rect(GrDrawTarget* target,