diff options
Diffstat (limited to 'src/core/SkPMFloat.h')
-rw-r--r-- | src/core/SkPMFloat.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/SkPMFloat.h b/src/core/SkPMFloat.h index f1d302458d..f97f25c9c6 100644 --- a/src/core/SkPMFloat.h +++ b/src/core/SkPMFloat.h @@ -27,6 +27,8 @@ public: static SkPMFloat FromPMColor(SkPMColor c) { return SkPMFloat(c); } static SkPMFloat FromARGB(float a, float r, float g, float b) { return SkPMFloat(a,r,g,b); } + Sk4f alphas() const; // argb -> aaaa, generally faster than the equivalent Sk4f(this->a()). + // Uninitialized. SkPMFloat() {} explicit SkPMFloat(SkPMColor); |