vulkano-framing 0.2.0

Uploading images to and downloading frames from the GPU.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![warn(missing_docs)]

//! Use Vulkan buffers as video frames / images!

extern crate framing;
extern crate vulkano;

mod buffer;
mod upload;

pub use buffer::*;
pub use upload::*;