Lines Matching defs:coeff
77 static constexpr bool GrBlendCoeffRefsSrc(const GrBlendCoeff coeff) {
78 return kSC_GrBlendCoeff == coeff || kISC_GrBlendCoeff == coeff || kSA_GrBlendCoeff == coeff ||
79 kISA_GrBlendCoeff == coeff;
82 static constexpr bool GrBlendCoeffRefsDst(const GrBlendCoeff coeff) {
83 return kDC_GrBlendCoeff == coeff || kIDC_GrBlendCoeff == coeff || kDA_GrBlendCoeff == coeff ||
84 kIDA_GrBlendCoeff == coeff;
87 static constexpr bool GrBlendCoeffRefsSrc2(const GrBlendCoeff coeff) {
88 return kS2C_GrBlendCoeff == coeff || kIS2C_GrBlendCoeff == coeff ||
89 kS2A_GrBlendCoeff == coeff || kIS2A_GrBlendCoeff == coeff;
113 static constexpr bool GrBlendCoeffRefsConstant(const GrBlendCoeff coeff) {
114 return coeff == kConstC_GrBlendCoeff || coeff == kIConstC_GrBlendCoeff;