Lines Matching refs:dstCoeff
46 GrBlendCoeff srcCoeff, GrBlendCoeff dstCoeff) in BlendFormula() argument
51 , fDstCoeff(dstCoeff) in BlendFormula()
52 , fProps(GetProperties(primaryOut, secondaryOut, equation, srcCoeff, dstCoeff)) {} in BlendFormula()
97 GrBlendCoeff dstCoeff() const { in dstCoeff() function in BlendFormula
194 static constexpr BlendFormula MakeCoeffFormula(GrBlendCoeff srcCoeff, GrBlendCoeff dstCoeff) { in MakeCoeffFormula() argument
197 (kZero_GrBlendCoeff == dstCoeff || kOne_GrBlendCoeff == dstCoeff)) in MakeCoeffFormula()
199 kAdd_GrBlendEquation, kZero_GrBlendCoeff, dstCoeff) in MakeCoeffFormula()
201 kAdd_GrBlendEquation, srcCoeff, dstCoeff); in MakeCoeffFormula()
208 static constexpr BlendFormula MakeSAModulateFormula(GrBlendCoeff srcCoeff, GrBlendCoeff dstCoeff) { in MakeSAModulateFormula() argument
210 kAdd_GrBlendEquation, srcCoeff, dstCoeff); in MakeSAModulateFormula()
419 blendInfo->fDstBlend = fBlendFormula.dstCoeff(); in onGetBlendInfo()