///////////////////////////////////////////////////////
| 53 | |
| 54 | //////////////////////////////////////////////////////////// |
| 55 | BlendMode::BlendMode(Factor sourceFactor, Factor destinationFactor, Equation blendEquation) : |
| 56 | colorSrcFactor(sourceFactor), |
| 57 | colorDstFactor(destinationFactor), |
| 58 | colorEquation(blendEquation), |
| 59 | alphaSrcFactor(sourceFactor), |
| 60 | alphaDstFactor(destinationFactor), |
| 61 | alphaEquation(blendEquation) |
| 62 | { |
| 63 | } |
| 64 | |
| 65 | |
| 66 | //////////////////////////////////////////////////////////// |
nothing calls this directly
no outgoing calls
no test coverage detected