| 130 | |
| 131 | |
| 132 | bool |
| 133 | ImageOutputWrap::write_scanlines (int ybegin, int yend, int z, |
| 134 | TypeDesc format, object &buffer, |
| 135 | stride_t xstride) |
| 136 | { |
| 137 | const void *array = make_read_buffer (buffer, m_output->spec().scanline_bytes()); |
| 138 | return m_output->write_scanlines(ybegin, yend, z, format, array, xstride); |
| 139 | } |
| 140 | |
| 141 | |
| 142 | bool |