Home | History | Annotate | Download | only in core

Lines Matching refs:outer

83      and the the outer pathEffect (e.g. outer(inner(path)))
84 The reference counts for outer and inner are both incremented in the constructor,
87 static sk_sp<SkPathEffect> Make(sk_sp<SkPathEffect> outer, sk_sp<SkPathEffect> inner) {
88 if (!outer) {
92 return outer;
94 return sk_sp<SkPathEffect>(new SkComposePathEffect(outer, inner));
117 SkComposePathEffect(sk_sp<SkPathEffect> outer, sk_sp<SkPathEffect> inner)
118 : INHERITED(outer, inner) {}
215 sk_sp<SkPathEffect> SkPathEffect::MakeCompose(sk_sp<SkPathEffect> outer,
217 return SkComposePathEffect::Make(std::move(outer), std::move(inner));