Searched refs:toXYZ (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/graphics/java/android/graphics/ |
D | ColorSpace.java | 2231 @NonNull @Size(9) float[] toXYZ, in Rgb() argument 2234 this(name, computePrimaries(toXYZ), computeWhitePoint(toXYZ), in Rgb() 2310 @NonNull @Size(9) float[] toXYZ, in Rgb() argument 2312 this(name, computePrimaries(toXYZ), computeWhitePoint(toXYZ), function, MIN_ID); in Rgb() 2432 @NonNull @Size(9) float[] toXYZ, in Rgb() argument 2434 … this(name, computePrimaries(toXYZ), computeWhitePoint(toXYZ), gamma, 0.0f, 1.0f, MIN_ID); in Rgb() 3251 private static float[] computePrimaries(@NonNull @Size(9) float[] toXYZ) { in computePrimaries() argument 3252 float[] r = mul3x3Float3(toXYZ, new float[] { 1.0f, 0.0f, 0.0f }); in computePrimaries() 3253 float[] g = mul3x3Float3(toXYZ, new float[] { 0.0f, 1.0f, 0.0f }); in computePrimaries() 3254 float[] b = mul3x3Float3(toXYZ, new float[] { 0.0f, 0.0f, 1.0f }); in computePrimaries() [all …]
|