| mtklein | a2f4be7 | 2015-02-23 10:04:34 -0800 | [diff] [blame] | 1 | #include "SkColorPriv.h" |
| mtklein | a2f4be7 | 2015-02-23 10:04:34 -0800 | [diff] [blame] | 2 | |
| mtklein | 4e644f5 | 2015-03-04 11:25:27 -0800 | [diff] [blame] | 3 | inline SkPMFloat::SkPMFloat(SkPMColor c) { |
| 4 | *this = SkPMFloat::FromARGB(SkGetPackedA32(c), |
| 5 | SkGetPackedR32(c), |
| 6 | SkGetPackedG32(c), |
| 7 | SkGetPackedB32(c)); |
| mtklein | a2f4be7 | 2015-02-23 10:04:34 -0800 | [diff] [blame] | 8 | SkASSERT(this->isValid()); |
| 9 | } |
| 10 | |
| 11 | inline SkPMColor SkPMFloat::get() const { |
| 12 | SkASSERT(this->isValid()); |
| mtklein | 0aebf5d | 2015-03-03 08:57:07 -0800 | [diff] [blame] | 13 | return SkPackARGB32(this->a()+0.5f, this->r()+0.5f, this->g()+0.5f, this->b()+0.5f); |
| mtklein | a2f4be7 | 2015-02-23 10:04:34 -0800 | [diff] [blame] | 14 | } |
| 15 | |
| 16 | inline SkPMColor SkPMFloat::clamped() const { |
| 17 | float a = this->a(), |
| 18 | r = this->r(), |
| 19 | g = this->g(), |
| 20 | b = this->b(); |
| mtklein | 60d2a32 | 2015-03-03 07:46:15 -0800 | [diff] [blame] | 21 | a = a < 0 ? 0 : (a > 255 ? 255 : a); |
| 22 | r = r < 0 ? 0 : (r > 255 ? 255 : r); |
| 23 | g = g < 0 ? 0 : (g > 255 ? 255 : g); |
| 24 | b = b < 0 ? 0 : (b > 255 ? 255 : b); |
| mtklein | 0aebf5d | 2015-03-03 08:57:07 -0800 | [diff] [blame] | 25 | return SkPackARGB32(a+0.5f, r+0.5f, g+0.5f, b+0.5f); |
| mtklein | a2f4be7 | 2015-02-23 10:04:34 -0800 | [diff] [blame] | 26 | } |
| mtklein | 91fd737 | 2015-03-06 06:15:44 -0800 | [diff] [blame] | 27 | |
| 28 | inline void SkPMFloat::From4PMColors(SkPMFloat floats[4], const SkPMColor colors[4]) { |
| 29 | for (int i = 0; i < 4; i++) { floats[i] = FromPMColor(colors[i]); } |
| 30 | } |
| 31 | |
| 32 | inline void SkPMFloat::To4PMColors(SkPMColor colors[4], const SkPMFloat floats[4]) { |
| 33 | for (int i = 0; i < 4; i++) { colors[i] = floats[i].get(); } |
| 34 | } |
| 35 | |
| 36 | inline void SkPMFloat::ClampTo4PMColors(SkPMColor colors[4], const SkPMFloat floats[4]) { |
| 37 | for (int i = 0; i < 4; i++) { colors[i] = floats[i].clamped(); } |
| 38 | } |