Home
last modified time | relevance | path

Searched refs:dstXYZ (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/graphics/java/android/graphics/
H A DColorSpace.java3867 float[] dstXYZ = dstRGB ? xyYToXyz(rgb.mWhitePoint) : ILLUMINANT_D50_XYZ;
3869 srcXYZ[0] / dstXYZ[0],
3870 srcXYZ[1] / dstXYZ[1],
3871 srcXYZ[2] / dstXYZ[2],
4018 float[] dstXYZ = xyYToXyz(destination.mWhitePoint);
4029 Adaptation.BRADFORD.mTransform, dstXYZ,
4037 srcXYZ[0] / dstXYZ[0],
4038 srcXYZ[1] / dstXYZ[1],
4039 srcXYZ[2] / dstXYZ[2],
/aosp14/frameworks/base/libs/hwui/utils/
H A DColor.cpp383 float3 dstXYZ = ColorSpace::XYZ(float3{colorSpace.getWhitePoint(), 1}); in LabToSRGB() local
384 xyz = adaptation(BRADFORD, ILLUMINANT_D50_XYZ, dstXYZ) * xyz; in LabToSRGB()
H A DHostColorSpace.cpp403 float3 dstXYZ = ColorSpace::XYZ(float3{dst.getWhitePoint(), 1}); in ColorSpaceConnector() local
410 … xyzToRGB = inverse(adaptation(BRADFORD, dstXYZ, ILLUMINANT_D50_XYZ) * dst.getRGBtoXYZ()); in ColorSpaceConnector()