diff options
author | skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-07-10 07:00:58 +0000 |
---|---|---|
committer | skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-07-10 07:00:58 +0000 |
commit | 9e1ec1a52985cce9db3a0d0e8d448b82a32e70cb (patch) | |
tree | 16d6e8cde90b0e4086bd61d9b79111a3740ec77e /samplecode | |
parent | ead3b83645722f9102b97f54c54a4a691d67ed72 (diff) |
Sanitizing source files in Housekeeper-Nightly
git-svn-id: http://skia.googlecode.com/svn/trunk@9948 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'samplecode')
-rw-r--r-- | samplecode/SamplePathUtils.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/samplecode/SamplePathUtils.cpp b/samplecode/SamplePathUtils.cpp index d1943630ea..09ab7738e9 100644 --- a/samplecode/SamplePathUtils.cpp +++ b/samplecode/SamplePathUtils.cpp @@ -25,10 +25,10 @@ static const BitsToPath gBitsToPath_fns[] = { static const uint8_t gBits[][16] = { { 0x18, 0x00, 0x3c, 0x00, 0x7e, 0x00, 0xdb, 0x00, 0xff, 0x00, 0x24, 0x00, 0x5a, 0x00, 0xa5, 0x00 }, - + { 0x20, 0x80, 0x91, 0x20, 0xbf, 0xa0, 0xee, 0xe0, 0xff, 0xe0, 0x7f, 0xc0, 0x20, 0x80, 0x40, 0x40 }, - + { 0x0f, 0x00, 0x7f, 0xe0, 0xff, 0xf0, 0xe6, 0x70, 0xff, 0xf0, 0x19, 0x80, 0x36, 0xc0, 0xc0, 0x30 } }; @@ -38,8 +38,8 @@ class SamplePathUtils : public SampleView { public: static const int fNumBits = 3; static const int fH = 8, fW = 12; - static const size_t fRowBytes = 2; - static const int fNumChars = fH * fRowBytes; + static const size_t fRowBytes = 2; + static const int fNumChars = fH * fRowBytes; SkPaint fBmpPaint; SkScalar fPhase; @@ -47,7 +47,7 @@ public: SamplePathUtils() { fBmpPaint.setAntiAlias(true); // Black paint for bitmap fBmpPaint.setStyle(SkPaint::kFill_Style); - + fPhase = 0.0f; // to animate the dashed path } @@ -77,13 +77,13 @@ protected: canvas->scale(10.0f, 10.0f); // scales up for (int i = 0; i < fNumBits; ++i) { - canvas->save(); + canvas->save(); for (size_t j = 0; j < SK_ARRAY_COUNT(gBitsToPath_fns); ++j) { SkPath path; gBitsToPath_fns[j](&path, (char*) &gBits[i], fW, fH, fRowBytes); //draw skPath and outline - canvas->drawPath(path, fBmpPaint); + canvas->drawPath(path, fBmpPaint); canvas->translate(1.5f * fW, 0); // translates past previous bitmap canvas->drawPath(path, outlinePaint); canvas->translate(1.5f * fW, 0); // translates past previous bitmap |