@brief no arg ctor */
| 109 | public: |
| 110 | /** @brief no arg ctor */ |
| 111 | InvertBase(ImageEffect &instance) |
| 112 | : ImageProcessor(instance) |
| 113 | , _srcImg(NULL) |
| 114 | , _maskImg(NULL) |
| 115 | , _doMasking(false) |
| 116 | , _processR(true) |
| 117 | , _processG(true) |
| 118 | , _processB(true) |
| 119 | , _processA(false) |
| 120 | , _premult(false) |
| 121 | , _premultChannel(3) |
| 122 | , _mix(1.) |
| 123 | , _maskInvert(false) |
| 124 | { |
| 125 | } |
| 126 | |
| 127 | /** @brief set the src image */ |
| 128 | void setSrcImg(const Image *v) {_srcImg = v; } |
nothing calls this directly
no outgoing calls
no test coverage detected