#[repr(C)]pub struct AEGP_WorldSuite2 {
pub AEGP_New: Option<unsafe extern "C" fn(plugin_id: AEGP_PluginID, type_: AEGP_WorldType, widthL: A_long, heightL: A_long, worldPH: *mut AEGP_WorldH) -> A_Err>,
pub AEGP_Dispose: Option<unsafe extern "C" fn(worldH: AEGP_WorldH) -> A_Err>,
pub AEGP_GetType: Option<unsafe extern "C" fn(worldH: AEGP_WorldH, typeP: *mut AEGP_WorldType) -> A_Err>,
pub AEGP_GetSize: Option<unsafe extern "C" fn(worldH: AEGP_WorldH, widthPL: *mut A_long, heightPL: *mut A_long) -> A_Err>,
pub AEGP_GetRowBytes: Option<unsafe extern "C" fn(worldH: AEGP_WorldH, row_bytesPL: *mut A_u_long) -> A_Err>,
pub AEGP_GetBaseAddr8: Option<unsafe extern "C" fn(worldH: AEGP_WorldH, base_addrP: *mut *mut PF_Pixel8) -> A_Err>,
pub AEGP_GetBaseAddr16: Option<unsafe extern "C" fn(worldH: AEGP_WorldH, base_addrP: *mut *mut PF_Pixel16) -> A_Err>,
pub AEGP_FillOutPFEffectWorld: Option<unsafe extern "C" fn(worldH: AEGP_WorldH, pf_worldP: *mut PF_EffectWorld) -> A_Err>,
pub AEGP_FastBlur: Option<unsafe extern "C" fn(radiusF: A_FpLong, mode: PF_ModeFlags, quality: PF_Quality, worldH: AEGP_WorldH) -> A_Err>,
pub AEGP_NewPlatformWorld: Option<unsafe extern "C" fn(plugin_id: AEGP_PluginID, type_: AEGP_WorldType, widthL: A_long, heightL: A_long, worldPH: *mut AEGP_PlatformWorldH) -> A_Err>,
pub AEGP_DisposePlatformWorld: Option<unsafe extern "C" fn(worldH: AEGP_PlatformWorldH) -> A_Err>,
pub AEGP_NewReferenceFromPlatformWorld: Option<unsafe extern "C" fn(plugin_id: AEGP_PluginID, platform_worldH: AEGP_PlatformWorldH, worldPH: *mut AEGP_WorldH) -> A_Err>,
}Fields§
§AEGP_New: Option<unsafe extern "C" fn(plugin_id: AEGP_PluginID, type_: AEGP_WorldType, widthL: A_long, heightL: A_long, worldPH: *mut AEGP_WorldH) -> A_Err>§AEGP_Dispose: Option<unsafe extern "C" fn(worldH: AEGP_WorldH) -> A_Err>§AEGP_GetType: Option<unsafe extern "C" fn(worldH: AEGP_WorldH, typeP: *mut AEGP_WorldType) -> A_Err>§AEGP_GetSize: Option<unsafe extern "C" fn(worldH: AEGP_WorldH, widthPL: *mut A_long, heightPL: *mut A_long) -> A_Err>§AEGP_GetRowBytes: Option<unsafe extern "C" fn(worldH: AEGP_WorldH, row_bytesPL: *mut A_u_long) -> A_Err>§AEGP_GetBaseAddr8: Option<unsafe extern "C" fn(worldH: AEGP_WorldH, base_addrP: *mut *mut PF_Pixel8) -> A_Err>§AEGP_GetBaseAddr16: Option<unsafe extern "C" fn(worldH: AEGP_WorldH, base_addrP: *mut *mut PF_Pixel16) -> A_Err>§AEGP_FillOutPFEffectWorld: Option<unsafe extern "C" fn(worldH: AEGP_WorldH, pf_worldP: *mut PF_EffectWorld) -> A_Err>§AEGP_FastBlur: Option<unsafe extern "C" fn(radiusF: A_FpLong, mode: PF_ModeFlags, quality: PF_Quality, worldH: AEGP_WorldH) -> A_Err>§AEGP_NewPlatformWorld: Option<unsafe extern "C" fn(plugin_id: AEGP_PluginID, type_: AEGP_WorldType, widthL: A_long, heightL: A_long, worldPH: *mut AEGP_PlatformWorldH) -> A_Err>§AEGP_DisposePlatformWorld: Option<unsafe extern "C" fn(worldH: AEGP_PlatformWorldH) -> A_Err>§AEGP_NewReferenceFromPlatformWorld: Option<unsafe extern "C" fn(plugin_id: AEGP_PluginID, platform_worldH: AEGP_PlatformWorldH, worldPH: *mut AEGP_WorldH) -> A_Err>Trait Implementations§
Source§impl Clone for AEGP_WorldSuite2
impl Clone for AEGP_WorldSuite2
Source§fn clone(&self) -> AEGP_WorldSuite2
fn clone(&self) -> AEGP_WorldSuite2
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AEGP_WorldSuite2
impl Debug for AEGP_WorldSuite2
impl Copy for AEGP_WorldSuite2
Auto Trait Implementations§
impl Freeze for AEGP_WorldSuite2
impl RefUnwindSafe for AEGP_WorldSuite2
impl Send for AEGP_WorldSuite2
impl Sync for AEGP_WorldSuite2
impl Unpin for AEGP_WorldSuite2
impl UnwindSafe for AEGP_WorldSuite2
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more