Constructor with default keyframes
| 22 | |
| 23 | // Constructor with default keyframes |
| 24 | Sharpen::Sharpen() |
| 25 | : amount(10.0) |
| 26 | , radius(3.0) |
| 27 | , threshold(0.0) |
| 28 | , mode(0) |
| 29 | , channel(1) |
| 30 | , mask_mode(SHARPEN_MASK_LIMIT_TO_AREA) |
| 31 | { |
| 32 | init_effect_details(); |
| 33 | } |
| 34 | |
| 35 | // Constructor from keyframes |
| 36 | Sharpen::Sharpen(Keyframe a, Keyframe r, Keyframe t) |
nothing calls this directly
no outgoing calls
no test coverage detected