aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/ovals.cpp
diff options
context:
space:
mode:
authorGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-04-19 07:01:00 +0000
committerGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-04-19 07:01:00 +0000
commitcb6dc752281841a8d3245d14530e30eff39816d3 (patch)
tree8c6f0be25eba1199a82d7a28bc75245621245fe0 /gm/ovals.cpp
parentfe77ecfaf3910e98a2fdc293a9debea7da1409a9 (diff)
Sanitizing source files in Skia_Periodic_House_Keeping
git-svn-id: http://skia.googlecode.com/svn/trunk@8759 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gm/ovals.cpp')
-rwxr-xr-xgm/ovals.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/gm/ovals.cpp b/gm/ovals.cpp
index b5a12e7328..ae727b9ef3 100755
--- a/gm/ovals.cpp
+++ b/gm/ovals.cpp
@@ -152,17 +152,17 @@ protected:
rectPaint.setColor(SK_ColorLTGRAY);
int testCount = 0;
- for (int i = 0; i < fPaints.count(); ++i) {
+ for (int i = 0; i < fPaints.count(); ++i) {
for (int j = 0; j < fMatrices.count(); ++j) {
canvas->save();
SkMatrix mat = fMatrices[j];
// position the oval, and make it at off-integer coords.
- mat.postTranslate(kXStart + SK_Scalar1 * kXStep * (testCount % maxX) +
+ mat.postTranslate(kXStart + SK_Scalar1 * kXStep * (testCount % maxX) +
SK_Scalar1 / 4,
- kYStart + SK_Scalar1 * kYStep * (testCount / maxX) +
+ kYStart + SK_Scalar1 * kYStep * (testCount / maxX) +
3 * SK_Scalar1 / 4);
canvas->concat(mat);
-
+
SkColor color = genColor(&rand);
fPaints[i].setColor(color);
@@ -178,13 +178,13 @@ protected:
// special cases
// non-scaled tall and skinny oval
- for (int i = 0; i < fPaints.count(); ++i) {
+ for (int i = 0; i < fPaints.count(); ++i) {
SkRect oval = SkRect::MakeLTRB(-20, -60, 20, 60);
canvas->save();
// position the oval, and make it at off-integer coords.
canvas->translate(kXStart + SK_Scalar1 * kXStep * 2.55f + SK_Scalar1 / 4,
kYStart + SK_Scalar1 * kYStep * i + 3 * SK_Scalar1 / 4);
-
+
SkColor color = genColor(&rand);
fPaints[i].setColor(color);
@@ -194,14 +194,14 @@ protected:
}
// non-scaled wide and short oval
- for (int i = 0; i < fPaints.count(); ++i) {
+ for (int i = 0; i < fPaints.count(); ++i) {
SkRect oval = SkRect::MakeLTRB(-80, -30, 80, 30);
canvas->save();
// position the oval, and make it at off-integer coords.
canvas->translate(kXStart + SK_Scalar1 * kXStep * 4 + SK_Scalar1 / 4,
kYStart + SK_Scalar1 * kYStep * i + 3 * SK_Scalar1 / 4 +
SK_ScalarHalf * kYStep);
-
+
SkColor color = genColor(&rand);
fPaints[i].setColor(color);
@@ -211,13 +211,13 @@ protected:
}
// super skinny oval
- for (int i = 0; i < fPaints.count(); ++i) {
+ for (int i = 0; i < fPaints.count(); ++i) {
SkRect oval = SkRect::MakeLTRB(0, -60, 1, 60);
canvas->save();
// position the oval, and make it at off-integer coords.
canvas->translate(kXStart + SK_Scalar1 * kXStep * 3.25f + SK_Scalar1 / 4,
kYStart + SK_Scalar1 * kYStep * i + 3 * SK_Scalar1 / 4);
-
+
SkColor color = genColor(&rand);
fPaints[i].setColor(color);
@@ -226,14 +226,14 @@ protected:
}
// super short oval
- for (int i = 0; i < fPaints.count(); ++i) {
+ for (int i = 0; i < fPaints.count(); ++i) {
SkRect oval = SkRect::MakeLTRB(-80, -1, 80, 0);
canvas->save();
// position the oval, and make it at off-integer coords.
canvas->translate(kXStart + SK_Scalar1 * kXStep * 2.5f + SK_Scalar1 / 4,
kYStart + SK_Scalar1 * kYStep * i + 3 * SK_Scalar1 / 4 +
SK_ScalarHalf * kYStep);
-
+
SkColor color = genColor(&rand);
fPaints[i].setColor(color);
@@ -252,13 +252,13 @@ protected:
SK_ARRAY_COUNT(colors),
SkShader::kClamp_TileMode));
- for (int i = 0; i < fPaints.count(); ++i) {
+ for (int i = 0; i < fPaints.count(); ++i) {
canvas->save();
// position the path, and make it at off-integer coords.
canvas->translate(kXStart + SK_Scalar1 * kXStep * 0 + SK_Scalar1 / 4,
kYStart + SK_Scalar1 * kYStep * i + 3 * SK_Scalar1 / 4 +
SK_ScalarHalf * kYStep);
-
+
SkColor color = genColor(&rand);
fPaints[i].setColor(color);
fPaints[i].setShader(shader);