mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-25 16:25:31 +00:00
1faa0c0668
* Rename Dimensions > ImageViewDimensions, ViewType > ImageViewType * Remove cubemap_compatible from ImageDimensions, add ImageCreateFlags to UnsafeImage creation * Replace various UnsafeImage features/usage methods with new ones that return them directly * Create image::view module, move view-related types into it * Create safe ImageView type, remove some of the validity checks from UnsafeImageView * Removed ImageViewAccess::samples and moved the descriptor_set_* functions to ImageAccess * Remove ImageViewAccess::dimensions * Impl ImageAccess for ImageView, remove impl on image types * Rename ImageViewAccess to ImageViewAbstract, move some methods around * Remove ImageViewDimensions (formerly Dimensions) * impl Error for ImageViewCreationError * Missing pub * Typo * Some small documentation changes * Check for ImageCreateFlags that are currently not properly supported |
||
---|---|---|
.. | ||
src | ||
Cargo.toml | ||
readme.md |
Examples
These examples use unreleased functionality of vulkano. For a snapshot of the examples at the latest vulkano release take a look at the examples repository
Running the examples:
cargo run --bin <example>
Example:
cargo run --bin triangle
If you want to compare performances with other libraries, you should pass the --release
flag as
well. Rust is pretty slow in debug mode.