Sanitizing source files in Skia_Periodic_House_Keeping

git-svn-id: http://skia.googlecode.com/svn/trunk@6669 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
skia.committer@gmail.com 2012-12-05 02:01:21 +00:00
parent b1c8827321
commit 73b140a9f6
5 changed files with 8 additions and 8 deletions

View File

@ -185,8 +185,8 @@ protected:
// Draw a 100x100 block of dashed lines. The horizontal ones are BW
// while the vertical ones are AA.
void drawDashedLines(SkCanvas* canvas,
SkScalar lineLength,
void drawDashedLines(SkCanvas* canvas,
SkScalar lineLength,
SkScalar phase,
SkScalar dashLength,
int strokeWidth,
@ -284,7 +284,7 @@ protected:
// 3on/3off 3x1 rects - should use rect fast path regardless of phase
for (int phase = 0; phase <= 3; ++phase) {
canvas->save();
canvas->translate(SkIntToScalar(phase*110+2),
canvas->translate(SkIntToScalar(phase*110+2),
SkIntToScalar(330));
this->drawDashedLines(canvas, 100, SkIntToScalar(phase), SkIntToScalar(3), 1, false);
canvas->restore();

View File

@ -49,7 +49,7 @@ protected:
paint.setStyle(SkPaint::kStroke_Style);
paint.setColor(SK_ColorRED);
canvas->drawPath(path, paint);
if (hasInterior) {
paint.setStyle(SkPaint::kFill_Style);
paint.setColor(0x8800FF00);
@ -89,7 +89,7 @@ protected:
SkScalar dy = (i % 4) * rect.height() * 6 / 5;
i++;
path.offset(dx, dy);
this->show(canvas, path);
}
}

View File

@ -280,7 +280,7 @@ void GrReduceClipStack(const SkClipStack& stack,
} else {
int clipsToSkip = 0;
Element* element = result->headIter().get();
while (NULL != element) {
while (NULL != element) {
bool skippable = false;
switch (element->getOp()) {
case SkRegion::kDifference_Op:

View File

@ -168,7 +168,7 @@ enum InitialState {
};
/**
* This function takes a clip stack and a query rectangle and it produces a reduced set of
* This function takes a clip stack and a query rectangle and it produces a reduced set of
* SkClipStack::Elements that are equivalent to applying the full stack to the rectangle. The
* initial state of the query rectangle before the first clip element is applied is returned via
* initialState. This function is declared here so that it can be unit-tested. It may become a

View File

@ -555,7 +555,7 @@ static void add_elem_to_region(const SkClipStack::Element& element,
elemRegion.setPath(element.getPath(), boundsRgn);
break;
case SkClipStack::Element::kEmpty_Type:
//
//
region->setEmpty();
return;
}