This commit is contained in:
marc0246 2023-07-14 16:45:59 +02:00
parent 0f5e298f29
commit a4406bf314
No known key found for this signature in database
GPG Key ID: 689CB88C1090C684

View File

@ -81,6 +81,10 @@ Changes to `Swapchain`:
Changes to samplers:
- The `sampler` module is now a submodule of `image`.
Changes to `Format`:
- The following objects now use `Format` instead of `Option<Format>`: `BufferView`, `Image`, `ImageView`, `SamplerYcbcrConversion`.
- The `block_size` method no longer returns an `Option`.
### Additions
- Vulkano-shaders: Added a `root_path_env` property to allow loading shaders generated by a build script.
@ -103,6 +107,7 @@ Changes to samplers:
- Added `ImageCreateFlags::EXTENDED_USAGE` from the `khr_maintenance2` extension.
- Support for the `ext_image_drm_format_modifier` extension.
- Support for the `ext_image_2d_view_of_3d` extension.
- Added `Format::UNDEFINED`, and implemented `Default` which returns this value.
### Bugs fixed