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
//! Kernel descriptors and dispatch. Use [`kernel!`](crate::kernel!) in
//! effects; [`Kernel`] is consumed by the graph executor.

mod descriptor;
pub mod params;
pub use descriptor::Kernel;
pub use params::KernelParams;

pub mod builtin;

mod macros;

mod from_ctx;
pub use from_ctx::FromCtx;