sarekt 0.0.4

A rendering engine based on Vulkan, but capable of being expanded to other graphics API backends such as Metal or D3D12
1
2
3
4
5
6
7
8
9
10
11
12
13
//! A renderer toy project!  I hope to hide the fact that it only supports
//! Vulkan from you in the hopes it one day supports more. It barely even
//! supports that...
//!
//! See renderer crate for how to use.
#[macro_use]
extern crate memoffset;
#[macro_use]
extern crate derive_builder;

pub mod error;
pub mod image_data;
pub mod renderer;