prgpu 0.1.9

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
16
17
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::*;