MCPcopy Create free account
hub / github.com/NatronGitHub/openfx-misc / InvertBase

Method InvertBase

Invert/Invert.cpp:111–125  ·  view source on GitHub ↗

@brief no arg ctor */

Source from the content-addressed store, hash-verified

109public:
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; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected