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

Method SlitScanProcessorBase

SlitScan/SlitScan.cpp:527–539  ·  view source on GitHub ↗

@brief no arg ctor */

Source from the content-addressed store, hash-verified

525public:
526 /** @brief no arg ctor */
527 SlitScanProcessorBase(ImageEffect &instance)
528 : PixelProcessor(instance)
529 , _sourceImages(NULL)
530 , _retimeMap(NULL)
531 , _time(0.)
532 , _filter(eFilterNearest)
533 , _retimeFunction(eRetimeFunctionHorizontalSlit)
534 , _retimeGain(1.)
535 , _retimeOffset(0.)
536 , _retimeAbsolute(false)
537 {
538 _srcRoDPixel.x1 = _srcRoDPixel.y1 = _srcRoDPixel.x2 = _srcRoDPixel.y2 = 0;
539 }
540
541 /** @brief set the src images */
542 void setSourceImages(const SourceImages *v) {_sourceImages = v->isConnected() ? v : NULL;}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected