erupt

docs.rs crates.io

Vulkan API bindings

Take a look at the erupt user guide.

MAINTENANCE MODE NOTICE

It is not recommended to use erupt for new projects, use ash instead. There is work underway to rewrite ash using ideas from the erupt project, for updates see https://github.com/ash-rs/ash/issues/344. Simple patches to erupt will still be merged, but no large changes are to be expected.

Features

Example: Instance Creation

```rust ignore use erupt::{vk, EntryLoader, InstanceLoader};

let entry = EntryLoader::new()?;

let appinfo = vk::ApplicationInfoBuilder::new() .apiversion(vk::APIVERSION11); let instanceinfo = vk::InstanceCreateInfoBuilder::new() .applicationinfo(&appinfo); let instance = InstanceLoader::new(&entry, &instance_info)?;

// ...

instance.destroy_instance(None); ```

Additional examples

Cargo Features

FAQ

Q: What's the difference between this, ash and vulkano?

A: Vulkano is special because it provides hand-written Vulkan wrappers, which means that for example it has a special hand-written wrapper around a Vulkan PhysicalDevice. On the other hand ash and erupt both provide Vulkan API bindings too, but not exposing such fancy wrappers and instead focusing on having good bindings to the raw Vulkan API.

The big selling points of erupt is that it has better documentation, high level function support for all extensions (which is only really relevant if you use those extensions), being fully generated and some more smaller improvements. On the other hand ash has a bigger existing community.

Q: What does the number at the end of the version mean?

A: It represents the Vulkan Header version this version of erupt was generated against and is purely informational.

Ecosystem

Initialization

Memory Allocation

Minimum Supported Rust Version (MSRV)

Rust 1.48 or higher.

Thank you

Licensing

The logo is the Volcano Emoji of Twemoji (License). The name "erupt" was added on top of it.

This project is licensed under the zlib License.