1
General / Update texture in Rust
« on: December 13, 2018, 08:35:03 pm »
Anyone knows how to update the texture in rust? I have the following:
Thanks
Quote
let mut image = Image::from_color(WIDTH, HEIGHT, &Color::GREEN).unwrap();
let mut texture = Texture::from_image(&image).unwrap();
let sprite = Sprite::with_texture(&texture); // -------- immutable borrow occurs here
texture.update_from_image(&image, 0, 0); // ERROR!!! --- cannot borrow `texture` as mutable because it is also borrowed as immutable
Thanks