Home
last modified time | relevance | path

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

/external/skqp/src/core/
DSkBitmapProcState_matrixProcs.cpp104 const SkFixed fixedFx = SkFractionalIntToFixed(fx); in nofilter_scale() local
107 if (can_truncate_to_fixed_for_decal(fixedFx, fixedDx, count, maxX)) { in nofilter_scale()
108 decal_nofilter_scale(xy, fixedFx, fixedDx, count); in nofilter_scale()
171 SkFixed fixedFx = SkFractionalIntToFixed(fx); in filter_scale() local
172 SkASSERT((fixedFx >> (16 + 14)) == 0); in filter_scale()
173 *xy++ = (fixedFx >> 12 << 14) | ((fixedFx >> 16) + 1); in filter_scale()
180 SkFixed fixedFx = SkFractionalIntToFixed(fx); in filter_scale() local
181 *xy++ = pack(fixedFx, maxX, s.fFilterOneX); in filter_scale()
426 const SkFixed fixedFx = SkFractionalIntToFixed(fx); in nofilter_scale_neon() local
428 if (tryDecal && can_truncate_to_fixed_for_decal(fixedFx, fixedDx, count, maxX)) { in nofilter_scale_neon()
[all …]
/external/skia/src/core/
DSkBitmapProcState_matrixProcs.cpp96 const SkFixed fixedFx = SkFractionalIntToFixed(fx); in nofilter_scale() local
99 if (can_truncate_to_fixed_for_decal(fixedFx, fixedDx, count, maxX)) { in nofilter_scale()
100 decal_nofilter_scale(xy, fixedFx, fixedDx, count); in nofilter_scale()
187 SkFixed fixedFx = SkFractionalIntToFixed(fx); in filter_scale() local
188 SkASSERT((fixedFx >> (16 + 14)) == 0); in filter_scale()
189 *xy++ = (fixedFx >> 12 << 14) | ((fixedFx >> 16) + 1); in filter_scale()