prgpu 0.2.0

GPU-accelerated rendering utilities for Adobe Premiere Pro and After Effects plugins
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Declarative multi-pass graph. [`Graph::pass`](Graph::pass) declares a
//! kernel invocation; [`Graph::mip_chain`](Graph::mip_chain) sweeps a pyramid.

pub mod execute;
pub mod pass;
pub mod resource;
pub mod source;

mod builder;

pub use execute::GraphError;
pub use builder::{Derived, Graph};
pub use pass::{MipDirection, PyramidHandle, Slot};
pub use resource::{MipPyramid, MipPyramidDesc};
pub use source::SourcePolicy;