kronos-compute 0.1.0

A high-performance compute-only Vulkan implementation with cutting-edge GPU optimizations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Core Kronos types and structures

pub mod enums;
pub mod structs;
pub mod flags;
pub mod compute;
pub mod thread_safety;
pub mod timeline;

pub use enums::*;
pub use structs::*;
pub use flags::*;
pub use compute::*;
pub use timeline::*;