OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ui/gfx/transform_util.h" | 5 #include "ui/gfx/transform_util.h" |
6 | 6 |
| 7 #include <stddef.h> |
| 8 |
7 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
8 #include "ui/gfx/geometry/point.h" | 10 #include "ui/gfx/geometry/point.h" |
9 #include "ui/gfx/geometry/point3_f.h" | 11 #include "ui/gfx/geometry/point3_f.h" |
10 #include "ui/gfx/geometry/rect.h" | 12 #include "ui/gfx/geometry/rect.h" |
11 | 13 |
12 namespace gfx { | 14 namespace gfx { |
13 namespace { | 15 namespace { |
14 | 16 |
15 TEST(TransformUtilTest, GetScaleTransform) { | 17 TEST(TransformUtilTest, GetScaleTransform) { |
16 const Point kAnchor(20, 40); | 18 const Point kAnchor(20, 40); |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 DecomposedTransform result; | 202 DecomposedTransform result; |
201 BlendDecomposedTransforms(&result, first, second, 0.25); | 203 BlendDecomposedTransforms(&result, first, second, 0.25); |
202 for (size_t i = 0; i < 4; ++i) { | 204 for (size_t i = 0; i < 4; ++i) { |
203 EXPECT_TRUE(std::isfinite(result.quaternion[i])); | 205 EXPECT_TRUE(std::isfinite(result.quaternion[i])); |
204 EXPECT_FALSE(std::isnan(result.quaternion[i])); | 206 EXPECT_FALSE(std::isnan(result.quaternion[i])); |
205 } | 207 } |
206 } | 208 } |
207 | 209 |
208 } // namespace | 210 } // namespace |
209 } // namespace gfx | 211 } // namespace gfx |
OLD | NEW |