Home
last modified time | relevance | path

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

/aosp_15_r20/external/skia/src/pdf/
H A DSkPDFUtils.h85 static constexpr unsigned kFloatColorDecimalCount = 4; variable
86 size_t ColorToDecimalF(float value, char result[kFloatColorDecimalCount + 2]);
93 char buffer[kFloatColorDecimalCount + 2]; in AppendColorComponentF()
H A DSkPDFUtils.cpp296 size_t SkPDFUtils::ColorToDecimalF(float value, char result[kFloatColorDecimalCount + 2]) { in ColorToDecimalF()
297 static constexpr int kFactor = int_pow(10, kFloatColorDecimalCount); in ColorToDecimalF()
304 return print_permil_as_decimal(x, result, kFloatColorDecimalCount); in ColorToDecimalF()