@brief no arg ctor */
| 525 | public: |
| 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;} |
nothing calls this directly
no outgoing calls
no test coverage detected