Lines Matching refs:CompositeMethod
72 CompositeMethod LottieParser::getMaskMethod(bool inversed) in getMaskMethod()
75 if (!mode) return CompositeMethod::None; in getMaskMethod()
79 if (inversed) return CompositeMethod::InvAlphaMask; in getMaskMethod()
80 else return CompositeMethod::AddMask; in getMaskMethod()
82 case 's': return CompositeMethod::SubtractMask; in getMaskMethod()
83 case 'i': return CompositeMethod::IntersectMask; in getMaskMethod()
84 case 'f': return CompositeMethod::DifferenceMask; in getMaskMethod()
85 case 'l': return CompositeMethod::LightenMask; in getMaskMethod()
86 case 'd': return CompositeMethod::DarkenMask; in getMaskMethod()
87 default: return CompositeMethod::None; in getMaskMethod()
129 CompositeMethod LottieParser::getMatteType() in getMatteType()
132 case 1: return CompositeMethod::AlphaMask; in getMatteType()
133 case 2: return CompositeMethod::InvAlphaMask; in getMatteType()
134 case 3: return CompositeMethod::LumaMask; in getMatteType()
135 case 4: return CompositeMethod::InvLumaMask; in getMatteType()
136 default: return CompositeMethod::None; in getMatteType()
1235 if (mask->method == CompositeMethod::None) valid = false; in parseMask()