Blank constructor, useful when using Json to load the effect properties
| 19 | |
| 20 | /// Blank constructor, useful when using Json to load the effect properties |
| 21 | Saturation::Saturation() : saturation(1.0), saturation_R(1.0), saturation_G(1.0), saturation_B(1.0), |
| 22 | mask_mode(SATURATION_MASK_POST_BLEND) { |
| 23 | // Init effect properties |
| 24 | init_effect_details(); |
| 25 | } |
| 26 | |
| 27 | // Default constructor |
| 28 | Saturation::Saturation(Keyframe saturation, Keyframe saturation_R, Keyframe saturation_G, Keyframe saturation_B) : |
nothing calls this directly
no outgoing calls
no test coverage detected