mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-25 00:04:15 +00:00
Vulkano version bump to 0.20.0 and vk-sys to 0.5.3
This commit is contained in:
parent
9f2257e83e
commit
de01dff7c8
@ -1,12 +1,13 @@
|
|||||||
# Unreleased
|
# Unreleased
|
||||||
|
|
||||||
|
# Version 0.5.3 (2020-12-26)
|
||||||
|
|
||||||
- Added support for:
|
- Added support for:
|
||||||
+ `PhysicalDeviceVariablePointersFeatures`
|
+ `PhysicalDeviceVariablePointersFeatures`
|
||||||
+ `PhysicalDeviceShaderAtomicInt64Features`
|
+ `PhysicalDeviceShaderAtomicInt64Features`
|
||||||
+ `PhysicalDevice8BitStorageFeatures`
|
+ `PhysicalDevice8BitStorageFeatures`
|
||||||
+ `PhysicalDevice16BitStorageFeatures`
|
+ `PhysicalDevice16BitStorageFeatures`
|
||||||
+ `PhysicalDeviceShaderFloat16Int8Features`
|
+ `PhysicalDeviceShaderFloat16Int8Features`
|
||||||
|
|
||||||
- Fix feature name in `PhysicalDeviceFeatures`:
|
- Fix feature name in `PhysicalDeviceFeatures`:
|
||||||
+ Rename `shaderf3264` to `shaderFloat64`
|
+ Rename `shaderf3264` to `shaderFloat64`
|
||||||
|
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
# Unreleased
|
# Unreleased
|
||||||
|
|
||||||
|
# Version 0.20.0 (2020-12-26)
|
||||||
|
|
||||||
- **Breaking** The `ImmutableImage::from_iter` and `ImmutableImage::from_buffer` can build Mipmaps
|
- **Breaking** The `ImmutableImage::from_iter` and `ImmutableImage::from_buffer` can build Mipmaps
|
||||||
- **Breaking** `CpuAccessibleBuffer` now uses `RwLock` from `parking_lot`.
|
- **Breaking** `CpuAccessibleBuffer` now uses `RwLock` from `parking_lot`.
|
||||||
- **Breaking** The `Kind` and `SubpassContents` types have been moved to the root of the `command_buffer` module.
|
- **Breaking** The `Kind` and `SubpassContents` types have been moved to the root of the `command_buffer` module.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "vk-sys"
|
name = "vk-sys"
|
||||||
version = "0.5.2"
|
version = "0.5.3"
|
||||||
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
||||||
repository = "https://github.com/vulkano-rs/vulkano"
|
repository = "https://github.com/vulkano-rs/vulkano"
|
||||||
description = "Bindings for the Vulkan graphics API"
|
description = "Bindings for the Vulkan graphics API"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "vulkano-shaders"
|
name = "vulkano-shaders"
|
||||||
version = "0.19.0"
|
version = "0.20.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
||||||
repository = "https://github.com/vulkano-rs/vulkano"
|
repository = "https://github.com/vulkano-rs/vulkano"
|
||||||
@ -21,7 +21,7 @@ quote = "1.0"
|
|||||||
proc-macro2 = "1.0"
|
proc-macro2 = "1.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
vulkano = { version = "0.19.0", path = "../vulkano" }
|
vulkano = { version = "0.20.0", path = "../vulkano" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
shaderc-build-from-source = ["shaderc/build-from-source"]
|
shaderc-build-from-source = ["shaderc/build-from-source"]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "vulkano-win"
|
name = "vulkano-win"
|
||||||
version = "0.19.0"
|
version = "0.20.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
||||||
repository = "https://github.com/vulkano-rs/vulkano"
|
repository = "https://github.com/vulkano-rs/vulkano"
|
||||||
@ -18,7 +18,7 @@ raw-window-handle_ = ["raw-window-handle"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
winit = { version = "0.24", optional = true }
|
winit = { version = "0.24", optional = true }
|
||||||
vulkano = { version = "0.19.0", path = "../vulkano" }
|
vulkano = { version = "0.20.0", path = "../vulkano" }
|
||||||
raw-window-handle = { version = "0.3.3", optional = true }
|
raw-window-handle = { version = "0.3.3", optional = true }
|
||||||
|
|
||||||
[target.'cfg(target_os = "macos")'.dependencies]
|
[target.'cfg(target_os = "macos")'.dependencies]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "vulkano"
|
name = "vulkano"
|
||||||
version = "0.19.0"
|
version = "0.20.0"
|
||||||
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
||||||
repository = "https://github.com/vulkano-rs/vulkano"
|
repository = "https://github.com/vulkano-rs/vulkano"
|
||||||
description = "Safe wrapper for the Vulkan graphics API"
|
description = "Safe wrapper for the Vulkan graphics API"
|
||||||
@ -18,6 +18,6 @@ fnv = "1.0"
|
|||||||
shared_library = "0.1"
|
shared_library = "0.1"
|
||||||
smallvec = "1.4"
|
smallvec = "1.4"
|
||||||
lazy_static = "1.4"
|
lazy_static = "1.4"
|
||||||
vk-sys = { version = "0.5.2", path = "../vk-sys" }
|
vk-sys = { version = "0.5.3", path = "../vk-sys" }
|
||||||
half = "1.6"
|
half = "1.6"
|
||||||
parking_lot = { version = "0.11.1", features = ["send_guard"] }
|
parking_lot = { version = "0.11.1", features = ["send_guard"] }
|
Loading…
Reference in New Issue
Block a user