| 984 | class TestColorStreamable { |
| 985 | public: |
| 986 | TestColorStreamable(int16_t width, int16_t height, const Color* data, |
| 987 | ColorMode color_mode = ColorMode()) |
| 988 | : color_mode_(color_mode), |
| 989 | extents_(0, 0, width - 1, height - 1), |
| 990 | data_(data) {} |
| 991 | |
| 992 | const Box& extents() const { return extents_; } |
| 993 |