Home
last modified time | relevance | path

Searched refs:rgbToXYZ (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/libs/hwui/utils/
H A DHostColorSpace.cpp87 float3 r(rgbToXYZ * float3{1, 0, 0}); in computePrimaries()
97 float3 w(rgbToXYZ * float3{1}); in computeWhitePoint()
103 const mat3& rgbToXYZ, in ColorSpace() argument
108 , mRGBtoXYZ(rgbToXYZ) in ColorSpace()
109 , mXYZtoRGB(inverse(rgbToXYZ)) in ColorSpace()
119 const mat3& rgbToXYZ, in ColorSpace() argument
123 , mRGBtoXYZ(rgbToXYZ) in ColorSpace()
124 , mXYZtoRGB(inverse(rgbToXYZ)) in ColorSpace()
135 const mat3& rgbToXYZ, in ColorSpace() argument
139 , mRGBtoXYZ(rgbToXYZ) in ColorSpace()
[all …]
H A DColor.cpp374 float3 xyz = colorSpace.rgbToXYZ(rgb); in sRGBToLab()