HomeSort by relevance Sort by last modified time
    Searched refs:sk_apply_lut_if (Results 1 - 6 of 6) sorted by null

  /external/skia/src/ports/
SkFontHost_FreeType_common.cpp 103 dst[x] = packTriple(sk_apply_lut_if<APPLY_PREBLEND>(*srcR++, tableR),
104 sk_apply_lut_if<APPLY_PREBLEND>(*srcG++, tableG),
105 sk_apply_lut_if<APPLY_PREBLEND>(*srcB++, tableB));
112 dst[x] = packTriple(sk_apply_lut_if<APPLY_PREBLEND>(triple[2], tableR),
113 sk_apply_lut_if<APPLY_PREBLEND>(triple[1], tableG),
114 sk_apply_lut_if<APPLY_PREBLEND>(triple[0], tableB));
119 dst[x] = packTriple(sk_apply_lut_if<APPLY_PREBLEND>(triple[0], tableR),
120 sk_apply_lut_if<APPLY_PREBLEND>(triple[1], tableG),
121 sk_apply_lut_if<APPLY_PREBLEND>(triple[2], tableB));
SkFontHost_mac_coretext.cpp     [all...]
SkFontHost_win.cpp     [all...]
SkFontHost_win_dw.cpp 933 dst[i] = sk_apply_lut_if<APPLY_PREBLEND>((r + g + b) / 3, table8);
    [all...]
  /external/skia/src/core/
SkMaskGamma.h 213 template<bool APPLY_LUT> static inline U8CPU sk_apply_lut_if(U8CPU component, const uint8_t*) { function
216 template<> /*static*/ inline U8CPU sk_apply_lut_if<true>(U8CPU component, const uint8_t* lut) { function
SkScalerContext.cpp 394 U8CPU r = sk_apply_lut_if<APPLY_PREBLEND>(*srcP++, maskPreBlend.fR);
395 U8CPU g = sk_apply_lut_if<APPLY_PREBLEND>(*srcP++, maskPreBlend.fG);
396 U8CPU b = sk_apply_lut_if<APPLY_PREBLEND>(*srcP++, maskPreBlend.fB);
417 U8CPU r = sk_apply_lut_if<APPLY_PREBLEND>(*srcP++, maskPreBlend.fR);
418 U8CPU g = sk_apply_lut_if<APPLY_PREBLEND>(*srcP++, maskPreBlend.fG);
419 U8CPU b = sk_apply_lut_if<APPLY_PREBLEND>(*srcP++, maskPreBlend.fB);

Completed in 621 milliseconds