
GitHub - vulkano-rs/vulkano: Safe and rich Rust wrapper around …
vulkano is the main one. vulkano-shaders provides the shader! macro for compiling glsl shaders. vulkano-taskgraph allows building a dependency graph of tasks, which are automatically synchronized and are then executed on the Vulkan device.
About - Vulkano
Vulkano is a Rust wrapper around the Vulkan graphics API. It follows the Rust philosophy, which is that as long as you don't use unsafe code you shouldn't be able to trigger any undefined behavior. In the case of Vulkan, this means that non-unsafe code should always conform to valid API usage. What does vulkano do?
vulkano - Rust - Docs.rs
vulkano-macros ^0.35 normal optional libc ^0.2.153 dev foldhash ^0.1 build
Introduction - Vulkano
Vulkano is a Rust library on top of Vulkan that makes it much easier and safer to use. After you have learned to use Vulkan/vulkano, you will be able to ask your GPU to perform operations and either write the result into memory (which you can then read from your Rust program), or to write the result to your monitor for you to physically see.
vulkano 0.35.1 - Docs.rs
Vulkano. Vulkano is a Rust wrapper around the Vulkan graphics API. It follows the Rust philosophy, which is that as long as you don't use unsafe code you shouldn't be able to trigger any undefined behavior. In the case of Vulkan, this means that non-unsafe code should always conform to valid API usage. What does vulkano do?
Intialization - Vulkano
An instance specifies the mapping between vulkano and the local Vulkan library. As of vulkano version 0.31.0, the library needs to be explicitly specified by passing a VulkanLibrary to the Instance constructor.
vulkano/README.md at master · vulkano-rs/vulkano - GitHub
vulkano is the main one. vulkano-shaders provides the shader! macro for compiling glsl shaders. vulkano-taskgraph allows building a dependency graph of tasks, which are automatically synchronized and are then executed on the Vulkan device.
Tutorial series for learning Vulkan with Vulkano and Rust
A repo for a tutorial series on Vulkan programming using the Vulkano Rust crate. The lessons go from initial project setup to toy rendering systems. Based on example code provided by the Vulkano project contributors.
Our First Window - Vulkano Tutorial
Vulkano supports a variety of memory allocators, which it uses to customize how buffers on both the host CPU and on the GPU are created and recycled, as well as command buffers used to transmit a series of instructions from the CPU to the GPU.
vulkano - Rust
[−] Crate vulkano. Safe and rich Rust wrapper around the Vulkan API. Brief summary of Vulkan. The Instance object is the API entry point. It is the first object you must create before starting to use Vulkan.
- Some results have been removed