prgpu 0.1.15

GPU-accelerated rendering utilities for Adobe Premiere Pro and After Effects plugins
mod buffer;
pub use buffer::{BufferKey, BufferObj, ImageBuffer, compute_row_bytes, compute_length_bytes};

pub mod maths;
pub use maths::*;

pub mod pixel;
pub use pixel::*;

pub mod config;
pub use config::*;

pub mod backend;
pub use backend::*;

pub mod render;
pub use render::*;

pub mod config_builder;
pub use config_builder::{ConfigBuildError, ConfigBuilder, PassBinding};