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
/// Build-time effect identity. Constructed only by the generated
/// `prgpu_effect_meta.rs` — never by hand.
pub struct EffectMeta {
	pub match_name: &'static str,
	pub display_name: &'static str,
	pub category: &'static str,
	pub version: (u32, u32, u32),
	pub support_url: Option<&'static str>,
	pub out_flags: u64,
	pub out_flags_2: u64,
	pub expansion: bool,
	pub gpu: bool,
}