Lines Matching refs:dstCoeff
45 GrBlendCoeff srcCoeff, GrBlendCoeff dstCoeff) in BlendFormula() argument
50 , fDstCoeff(dstCoeff) in BlendFormula()
51 , fProps(GetProperties(primaryOut, secondaryOut, equation, srcCoeff, dstCoeff)) {} in BlendFormula()
94 GrBlendCoeff dstCoeff() const { in dstCoeff() function in BlendFormula
184 static constexpr BlendFormula MakeCoeffFormula(GrBlendCoeff srcCoeff, GrBlendCoeff dstCoeff) { in MakeCoeffFormula() argument
187 (kZero_GrBlendCoeff == dstCoeff || kOne_GrBlendCoeff == dstCoeff)) in MakeCoeffFormula()
189 kAdd_GrBlendEquation, kZero_GrBlendCoeff, dstCoeff) in MakeCoeffFormula()
191 kAdd_GrBlendEquation, srcCoeff, dstCoeff); in MakeCoeffFormula()
198 static constexpr BlendFormula MakeSAModulateFormula(GrBlendCoeff srcCoeff, GrBlendCoeff dstCoeff) { in MakeSAModulateFormula() argument
200 kAdd_GrBlendEquation, srcCoeff, dstCoeff); in MakeSAModulateFormula()
395 blendInfo->fDstBlend = fBlendFormula.dstCoeff(); in onGetBlendInfo()