Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
H A Dxray-color-helper.cpp53 : MinIn(0.0), MaxIn(1.0), ColorMap(SequentialMaps[static_cast<int>(S)]), in ColorHelper()
77 : MinIn(-1.0), MaxIn(1.0), ColorMap(DivergingCoeffs[static_cast<int>(S)]), in ColorHelper()
182 assert(!ColorMap.empty() && "ColorMap must not be empty!"); in getColorTuple()
190 size_t MaxIndex = ColorMap.size() - 1; in getColorTuple()
197 auto &RGBColor0 = ColorMap[SectionNo]; in getColorTuple()
198 auto &RGBColor1 = ColorMap[std::min(SectionNo + 1, MaxIndex)]; in getColorTuple()
H A Dxray-color-helper.h47 ArrayRef<std::tuple<uint8_t, uint8_t, uint8_t>> ColorMap; variable