Home
last modified time | relevance | path

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

/external/pdfium/core/fpdfapi/page/
Dcpdf_colorspace.cpp249 class Vector_3by1 { class
251 Vector_3by1() : a(0.0f), b(0.0f), c(0.0f) {} in Vector_3by1() function in __anoncf47c8730111::Vector_3by1
253 Vector_3by1(float a1, float b1, float c1) : a(a1), b(b1), c(c1) {} in Vector_3by1() function in __anoncf47c8730111::Vector_3by1
303 Vector_3by1 TransformVector(const Vector_3by1& v) { in TransformVector()
304 return Vector_3by1(a * v.a + b * v.b + c * v.c, d * v.a + e * v.b + f * v.c, in TransformVector()
354 Vector_3by1 whitePoint(Xw, Yw, Zw); in XYZ_to_sRGB_WhitePoint()
355 Vector_3by1 XYZ(X, Y, Z); in XYZ_to_sRGB_WhitePoint()
357 Vector_3by1 RGB_Sum_XYZ = RGB_xyz.Inverse().TransformVector(whitePoint); in XYZ_to_sRGB_WhitePoint()
361 Vector_3by1 RGB = M.Inverse().TransformVector(XYZ); in XYZ_to_sRGB_WhitePoint()