1use crate::resource::TextureFormat; 2 3#[derive(Debug, Clone)] 4pub struct TextureReadback { 5 pub data: Vec<u8>, 6 pub format: TextureFormat, 7 pub width: u32, 8 pub height: u32, 9}