favilla 0.3.0

A library with utilities for Vulkan programming.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![deny(rust_2018_idioms)]
#![deny(clippy::all)]

pub mod app;
pub mod buffer;
pub mod camera;
pub mod cleanup;
pub mod cleanup_queue;
pub mod debug_utils;
pub mod frame_data;
pub mod layer_names;
pub mod linear_allocator;
pub mod memory;
pub mod push_buffer;
pub mod queue_families;
pub mod swapchain;
pub mod texture;
pub mod vk_engine;