| 74 | class SimpleInkProcessing : public InkProcessing<Derived> { |
| 75 | public: |
| 76 | void initIterators(ToolLoop* loop, int x1, int y) { |
| 77 | m_dstAddress = (typename ImageTraits::address_t)loop->getDstImage()->getPixelAddress(x1, y); |
| 78 | } |
| 79 | |
| 80 | void moveIterators() { |
| 81 | ++m_dstAddress; |
no test coverage detected