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
mod buffer;
pub use buffer::{BufferKey, BufferObj, ImageBuffer, compute_row_bytes, compute_length_bytes};

pub mod pixel;
pub use pixel::*;

pub mod config;
pub use config::*;

pub mod backend;
pub use backend::*;

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