diff --git a/Cargo.toml b/Cargo.toml index c5c005ee..8da02841 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pixels" description = "A tiny library providing a GPU-powered pixel frame buffer." -version = "0.6.0" +version = "0.7.0" authors = ["Jay Oster "] edition = "2018" repository = "https://github.com/parasyte/pixels" diff --git a/MSRV.md b/MSRV.md index 0ea0b1c2..aae143a6 100644 --- a/MSRV.md +++ b/MSRV.md @@ -2,6 +2,7 @@ | `pixels` version | `rustc` version | |------------------|-----------------| +| `0.7.0` | `1.52.0` | | `0.6.0` | `1.52.0` | | `0.5.0` | `1.52.0` | | `0.4.0` | `1.52.0` | diff --git a/src/renderers.rs b/src/renderers.rs index f089ddb3..f5cfe4de 100644 --- a/src/renderers.rs +++ b/src/renderers.rs @@ -12,7 +12,6 @@ pub struct ScalingRenderer { width: f32, height: f32, clip_rect: (u32, u32, u32, u32), - render_texture_format: wgpu::TextureFormat, } impl ScalingRenderer { @@ -181,7 +180,6 @@ impl ScalingRenderer { width: texture_size.width as f32, height: texture_size.height as f32, clip_rect, - render_texture_format, } }