| 171 | |
| 172 | template <typename... Args> |
| 173 | ColorStream(Box bounds, Args&&... args) |
| 174 | : reader_(std::forward<Args>(args)...), |
| 175 | bounds_(std::move(bounds)), |
| 176 | x_(bounds_.xMin()), |
| 177 | y_(bounds_.yMin()) {} |
| 178 | |
| 179 | void read(Color* buf, uint16_t size, uint32_t& run_length) override { |
| 180 | run_length = 0; |