prgpu 0.1.8

GPU-accelerated rendering utilities for Adobe Premiere Pro and After Effects plugins
pub mod kernels;

pub mod cpu;
pub mod gpu;
pub use gpu::*;

pub mod timing;

pub mod types;
pub use types::*;

pub mod params;
pub mod ui;

#[cfg(feature = "build")]
pub mod build;

#[cfg(feature = "bench")]
pub mod bench;

pub use paste;
pub use prgpu_macro::gpu_struct;