OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "SampleCode.h" | 8 #include "SampleCode.h" |
9 #include "SkCanvas.h" | 9 #include "SkCanvas.h" |
10 #include "SkDevice.h" | |
11 #include "SkPaint.h" | 10 #include "SkPaint.h" |
12 #include "SkPath.h" | 11 #include "SkPath.h" |
13 #include "SkView.h" | 12 #include "SkView.h" |
14 | 13 |
15 // ensure that we don't accidentally screw up the bounds when the oval is | 14 // ensure that we don't accidentally screw up the bounds when the oval is |
16 // fractional, and the impl computes the center and radii, and uses them to | 15 // fractional, and the impl computes the center and radii, and uses them to |
17 // reconstruct the edges of the circle. | 16 // reconstruct the edges of the circle. |
18 // see bug# 1504910 | 17 // see bug# 1504910 |
19 static void test_circlebounds(SkCanvas*) { | 18 static void test_circlebounds(SkCanvas*) { |
20 SkRect r = { 1.39999998f, 1, 21.3999996f, 21 }; | 19 SkRect r = { 1.39999998f, 1, 21.3999996f, 21 }; |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 }; | 118 }; |
120 | 119 |
121 const SkScalar CircleView::ANIM_DX(SK_Scalar1 / 67); | 120 const SkScalar CircleView::ANIM_DX(SK_Scalar1 / 67); |
122 const SkScalar CircleView::ANIM_DY(SK_Scalar1 / 29); | 121 const SkScalar CircleView::ANIM_DY(SK_Scalar1 / 29); |
123 const SkScalar CircleView::ANIM_RAD(SK_Scalar1 / 19); | 122 const SkScalar CircleView::ANIM_RAD(SK_Scalar1 / 19); |
124 | 123 |
125 ////////////////////////////////////////////////////////////////////////////// | 124 ////////////////////////////////////////////////////////////////////////////// |
126 | 125 |
127 static SkView* MyFactory() { return new CircleView; } | 126 static SkView* MyFactory() { return new CircleView; } |
128 static SkViewRegister reg(MyFactory); | 127 static SkViewRegister reg(MyFactory); |
OLD | NEW |