Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: tests/Sk2xTest.cpp

Issue 1024993002: Sk2x::invert() and Sk2x::approxInvert() (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: invert() and approxInvert() Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/opts/Sk2x_sse.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2015 Google Inc. 2 * Copyright 2015 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 "Test.h" 8 #include "Test.h"
9 #include "Sk2x.h" 9 #include "Sk2x.h"
10 10
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 42
43 // Math 43 // Math
44 REPORTER_ASSERT(r, eq(a + d, 6, 9)); 44 REPORTER_ASSERT(r, eq(a + d, 6, 9));
45 REPORTER_ASSERT(r, eq(a - d, 2, -1)); 45 REPORTER_ASSERT(r, eq(a - d, 2, -1));
46 REPORTER_ASSERT(r, eq(a * d, 8, 20)); 46 REPORTER_ASSERT(r, eq(a * d, 8, 20));
47 REPORTER_ASSERT(r, eq(a / d, 2, 0.8)); 47 REPORTER_ASSERT(r, eq(a / d, 2, 0.8));
48 48
49 REPORTER_ASSERT(r, nearly_eq(0.001, a.rsqrt(), 0.5, 0.5)); 49 REPORTER_ASSERT(r, nearly_eq(0.001, a.rsqrt(), 0.5, 0.5));
50 REPORTER_ASSERT(r, eq(a.sqrt(), 2, 2)); 50 REPORTER_ASSERT(r, eq(a.sqrt(), 2, 2));
51 51
52 REPORTER_ASSERT(r, nearly_eq(0.001, d.approxInvert(), 0.5, 0.2));
53 REPORTER_ASSERT(r, eq(d.invert(), 0.5, 0.2));
54
52 REPORTER_ASSERT(r, eq(Sk2x<T>::Min(a, d), 2, 4)); 55 REPORTER_ASSERT(r, eq(Sk2x<T>::Min(a, d), 2, 4));
53 REPORTER_ASSERT(r, eq(Sk2x<T>::Max(a, d), 4, 5)); 56 REPORTER_ASSERT(r, eq(Sk2x<T>::Max(a, d), 4, 5));
54 57
55 REPORTER_ASSERT(r, eq(-d, -2, -5)); 58 REPORTER_ASSERT(r, eq(-d, -2, -5));
56 59
57 // A bit of both. 60 // A bit of both.
58 a += d; 61 a += d;
59 a *= d; 62 a *= d;
60 a -= d; 63 a -= d;
61 REPORTER_ASSERT(r, eq(a, 10, 40)); 64 REPORTER_ASSERT(r, eq(a, 10, 40));
62 } 65 }
63 66
64 DEF_TEST(Sk2f, r) { test< float>(r); } 67 DEF_TEST(Sk2f, r) { test< float>(r); }
65 DEF_TEST(Sk2d, r) { test<double>(r); } 68 DEF_TEST(Sk2d, r) { test<double>(r); }
OLDNEW
« no previous file with comments | « src/opts/Sk2x_sse.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698