Index: src/core/Sk2x.h |
diff --git a/src/core/Sk2x.h b/src/core/Sk2x.h |
index 9b4e5ee61c7178433d974b8462711627d58c93aa..f49442563ad66e88dcc2141d6d2192db917594ee 100644 |
--- a/src/core/Sk2x.h |
+++ b/src/core/Sk2x.h |
@@ -67,6 +67,9 @@ public: |
Sk2x rsqrt() const; // Approximate 1/this->sqrt(). |
Sk2x sqrt() const; // this->multiply(this->rsqrt()) may be faster, but less precise. |
+ Sk2x invert() const; // 1/this. |
+ Sk2x approxInvert() const; // Approximate 1/this, usually faster but less precise. |
+ |
static Sk2x Min(const Sk2x&, const Sk2x&); |
static Sk2x Max(const Sk2x&, const Sk2x&); |