mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-22 14:56:42 +00:00
parent
6e0e87f222
commit
ba6fe09155
@ -5,7 +5,7 @@
|
|||||||
- **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.
|
||||||
- **Breaking** On `AutoCommandBufferBuilder`, the methods `begin_render_pass` and `next_subpass` now take `SubpassContents` instead of a boolean value.
|
- **Breaking** On `AutoCommandBufferBuilder`, the methods `begin_render_pass` and `next_subpass` now take `SubpassContents` instead of a boolean value.
|
||||||
- **Breaking** The `CommandBuffer` trait now has an additional required method, `kind`.
|
- **Breaking** The `CommandBuffer` trait now has an additional required method, `kind`.
|
||||||
- **Breaking** Update dependency `winit` 0.22 -> 0.23
|
- **Breaking** Update dependency `winit` 0.22 -> 0.24
|
||||||
- **Breaking** Added an Option to the ComputePipeline constructor to enable pipeline caching.
|
- **Breaking** Added an Option to the ComputePipeline constructor to enable pipeline caching.
|
||||||
- Add support for 8bit storage.
|
- Add support for 8bit storage.
|
||||||
- Some safety checks have been added to `execute_commands`/`execute_commands_from_vec` on `AutoCommandBufferBuilder`, but not everything is checked yet so it's still unsafe to call.
|
- Some safety checks have been added to `execute_commands`/`execute_commands_from_vec` on `AutoCommandBufferBuilder`, but not everything is checked yet so it's still unsafe to call.
|
||||||
|
@ -12,7 +12,7 @@ vulkano = { path = "../vulkano" }
|
|||||||
vulkano-shaders = { path = "../vulkano-shaders" }
|
vulkano-shaders = { path = "../vulkano-shaders" }
|
||||||
# The Vulkan library doesn't provide any functionality to create and handle windows, as
|
# The Vulkan library doesn't provide any functionality to create and handle windows, as
|
||||||
# this would be out of scope. In order to open a window, we are going to use the `winit` crate.
|
# this would be out of scope. In order to open a window, we are going to use the `winit` crate.
|
||||||
winit = "0.23"
|
winit = "0.24"
|
||||||
# The `vulkano_win` crate is the link between `vulkano` and `winit`. Vulkano doesn't know about winit,
|
# The `vulkano_win` crate is the link between `vulkano` and `winit`. Vulkano doesn't know about winit,
|
||||||
# and winit doesn't know about vulkano, so import a crate that will provide a link between the two.
|
# and winit doesn't know about vulkano, so import a crate that will provide a link between the two.
|
||||||
vulkano-win = { path = "../vulkano-win" }
|
vulkano-win = { path = "../vulkano-win" }
|
||||||
|
@ -17,7 +17,7 @@ winit_ = ["winit", "metal", "cocoa", "objc"]
|
|||||||
raw-window-handle_ = ["raw-window-handle"]
|
raw-window-handle_ = ["raw-window-handle"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
winit = { version = "0.23", optional = true }
|
winit = { version = "0.24", optional = true }
|
||||||
vulkano = { version = "0.19.0", path = "../vulkano" }
|
vulkano = { version = "0.19.0", path = "../vulkano" }
|
||||||
raw-window-handle = { version = "0.3.3", optional = true }
|
raw-window-handle = { version = "0.3.3", optional = true }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user