OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:xyY
(Results
1 - 2
of
2
) sorted by null
/frameworks/native/libs/ui/include/ui/
ColorSpace.h
220
* Converts the supplied XYZ value to
xyY
.
222
static constexpr float2
xyY
(const float3& XYZ) {
227
* Converts the supplied
xyY
value to XYZ.
229
static constexpr float3 XYZ(const float3&
xyY
) {
230
return float3{(
xyY
.x *
xyY
.z) /
xyY
.y,
xyY
.z, ((1 -
xyY
.x -
xyY
.y) * xyY.z) / xyY.y}
[
all
...]
/frameworks/base/graphics/java/android/graphics/
ColorSpace.java
138
* Standard CIE 1931 2° illuminant A, encoded in
xyY
.
143
* Standard CIE 1931 2° illuminant B, encoded in
xyY
.
148
* Standard CIE 1931 2° illuminant C, encoded in
xyY
.
153
* Standard CIE 1931 2° illuminant D50, encoded in
xyY
.
159
* Standard CIE 1931 2° illuminant D55, encoded in
xyY
.
164
* Standard CIE 1931 2° illuminant D60, encoded in
xyY
.
169
* Standard CIE 1931 2° illuminant D65, encoded in
xyY
.
175
* Standard CIE 1931 2° illuminant D75, encoded in
xyY
.
180
* Standard CIE 1931 2° illuminant E, encoded in
xyY
.
[
all
...]
Completed in 90 milliseconds