diff --git a/bench/RectBench.cpp b/bench/RectBench.cpp index 17fccfd3a..4a2d3c57b 100644 --- a/bench/RectBench.cpp +++ b/bench/RectBench.cpp @@ -23,7 +23,7 @@ public: SkRect fRects[N]; SkColor fColors[N]; - RectBench(void* param, int shift, int stroke = 0) + RectBench(void* param, int shift, int stroke = 0) : INHERITED(param) , fShift(shift) , fStroke(stroke) { @@ -185,7 +185,7 @@ protected: // Draw small aa rects in a grid across the screen for (SkScalar y = SK_ScalarHalf; y < H; y += SkIntToScalar(2)) { for (SkScalar x = SK_ScalarHalf; x < W; x += SkIntToScalar(2)) { - r.set(x, y, + r.set(x, y, x+SkFloatToScalar(1.5f), y+SkFloatToScalar(1.5f)); canvas->drawRect(r, paint); } diff --git a/gm/simpleaaclip.cpp b/gm/simpleaaclip.cpp index b32ed9fb9..885226b6e 100644 --- a/gm/simpleaaclip.cpp +++ b/gm/simpleaaclip.cpp @@ -198,5 +198,5 @@ private: DEF_GM( return new SimpleClipGM(SimpleClipGM::kRect_GeomType); ) DEF_GM( return new SimpleClipGM(SimpleClipGM::kPath_GeomType); ) DEF_GM( return new SimpleClipGM(SimpleClipGM::kAAClip_GeomType); ) - + } diff --git a/src/effects/SkDashPathEffect.cpp b/src/effects/SkDashPathEffect.cpp index 4f695ad4d..10ef81b5d 100644 --- a/src/effects/SkDashPathEffect.cpp +++ b/src/effects/SkDashPathEffect.cpp @@ -198,12 +198,12 @@ bool SkDashPathEffect::filterPath(SkPath* dst, const SkPath& src, addedSegment = true; if (specialLine) { - lineRec.addSegment(SkDoubleToScalar(distance), - SkDoubleToScalar(distance + dlen), + lineRec.addSegment(SkDoubleToScalar(distance), + SkDoubleToScalar(distance + dlen), dst); } else { - meas.getSegment(SkDoubleToScalar(distance), - SkDoubleToScalar(distance + dlen), + meas.getSegment(SkDoubleToScalar(distance), + SkDoubleToScalar(distance + dlen), dst, true); } } diff --git a/src/gpu/GrClipMaskManager.cpp b/src/gpu/GrClipMaskManager.cpp index f14a37489..fbb1a0e0a 100644 --- a/src/gpu/GrClipMaskManager.cpp +++ b/src/gpu/GrClipMaskManager.cpp @@ -522,14 +522,14 @@ GrTexture* GrClipMaskManager::createAlphaClipMask(int32_t clipStackGenID, if (NULL == temp.texture()) { fAACache.reset(); return NULL; - } + } dst = temp.texture(); // clear the temp target and set blend to replace fGpu->clear(&maskSpaceElementIBounds, invert ? 0xffffffff : 0x00000000, dst->asRenderTarget()); setup_boolean_blendcoeffs(drawState, SkRegion::kReplace_Op); - + } else { // draw directly into the result with the stencil set to make the pixels affected // by the clip shape be non-zero. @@ -542,7 +542,7 @@ GrTexture* GrClipMaskManager::createAlphaClipMask(int32_t clipStackGenID, 0xffff, 0xffff); drawState->setStencil(kStencilInElement); - setup_boolean_blendcoeffs(drawState, op); + setup_boolean_blendcoeffs(drawState, op); } drawState->setAlpha(invert ? 0x00 : 0xff);