Prepare 0.7.0 (#210)
This commit is contained in:
parent
800dd931b7
commit
0295a54e30
|
@ -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 <jay@kodewerx.org>"]
|
||||
edition = "2018"
|
||||
repository = "https://github.com/parasyte/pixels"
|
||||
|
|
1
MSRV.md
1
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` |
|
||||
|
|
|
@ -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,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue