Searched defs:srgb (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/libs/hwui/utils/
H A DColor.h114 static constexpr float EOCF_sRGB(float srgb) { argument
116 return srgb <= 0.04045f ? srgb / 12.92f : powf((srgb + 0.055f) / 1.055f, 2.4f);
122 static constexpr float EOCF(float srgb) { argument
124 return EOCF_sRGB(srgb);
126 return srgb;

Completed in 101 milliseconds