| 200 | float getProgress() const { return mProgress; } |
| 201 | bool hasPartialImage() const { return mDriver ? mDriver->hasPartialImage() : false; } |
| 202 | Frame getPartialFrame() { return mDriver ? mDriver->getPartialFrame() : Frame(0); } |
| 203 | fl::u16 getDecodedRows() const { return mDriver ? mDriver->getDecodedRows() : 0; } |
| 204 | bool feedData(fl::span<const fl::u8> data) { (void)data; return false; } // Not implemented |
| 205 | bool needsMoreData() const { return false; } // Not implemented |
nothing calls this directly
no test coverage detected