Sk2x::invert() and Sk2x::approxInvert()

BUG=skia:

Review URL: https://codereview.chromium.org/1024993002
diff --git a/tests/Sk2xTest.cpp b/tests/Sk2xTest.cpp
index b74cc5b..40e9091 100644
--- a/tests/Sk2xTest.cpp
+++ b/tests/Sk2xTest.cpp
@@ -49,6 +49,9 @@
     REPORTER_ASSERT(r, nearly_eq(0.001, a.rsqrt(), 0.5, 0.5));
     REPORTER_ASSERT(r, eq(a.sqrt(), 2, 2));
 
+    REPORTER_ASSERT(r, nearly_eq(0.001, d.approxInvert(), 0.5, 0.2));
+    REPORTER_ASSERT(r, eq(d.invert(), 0.5, 0.2));
+
     REPORTER_ASSERT(r, eq(Sk2x<T>::Min(a, d), 2, 4));
     REPORTER_ASSERT(r, eq(Sk2x<T>::Max(a, d), 4, 5));