Going through the long-form docs and realised RgbaInputFile::set_frame_buffer is unsound because we're giving it a non-mut slice to read into. Naughty. Changing this to a mut ref will mean we can't do the chunked read from readRgba3 example in safe Rust.
Going through the long-form docs and realised RgbaInputFile::set_frame_buffer is unsound because we're giving it a non-mut slice to read into. Naughty. Changing this to a mut ref will mean we can't do the chunked read from readRgba3 example in safe Rust.