Lines Matching refs:amount
111 void operator()(float amount, size_t offset, size_t count) const {
112 (this->*fProc)(amount, offset, count);
117 void add_proc(float amount, size_t offset, size_t count) const {
118 if (!amount || !count) return;
121 dst->coverage = SkTPin<float>(dst->coverage + amount, -1, 1);
126 void domain_map_proc(float amount, size_t offset, size_t count) const {
132 (this->*fMappedProc)(amount, span.fOffset, span.fCount);
136 using ProcT = void(CoverageProcessor::*)(float amount, size_t offset, size_t count) const;
344 * 3) The coverage is then scaled by the |amount| parameter.
357 const auto amount = SkTPin<float>(fAmount / 100, -1, 1),
389 coverage_proc(amount * gen(t), i, 1);