| 89 | class DoubleInkProcessing : public InkProcessing<Derived> { |
| 90 | public: |
| 91 | void initIterators(ToolLoop* loop, int x1, int y) { |
| 92 | m_srcAddress = (typename ImageTraits::address_t)loop->getSrcImage()->getPixelAddress(x1, y); |
| 93 | m_dstAddress = (typename ImageTraits::address_t)loop->getDstImage()->getPixelAddress(x1, y); |
| 94 | } |
| 95 | |
| 96 | void moveIterators() { |
| 97 | ++m_srcAddress; |
nothing calls this directly
no test coverage detected