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

/frameworks/base/graphics/java/android/graphics/
H A DColorMatrix.java232 * @param sat A value of 0 maps the color to gray-scale. 1 is identity.
234 public void setSaturation(float sat) { argument
238 final float invSat = 1 - sat;
243 m[0] = R + sat; m[1] = G; m[2] = B;
244 m[5] = R; m[6] = G + sat; m[7] = B;
245 m[10] = R; m[11] = G; m[12] = B + sat;

Completed in 685 milliseconds