pub trait ID2D1GeometryGroup_Impl: Sized + ID2D1Geometry_Impl {
    // Required methods
    fn GetFillMode(&self) -> D2D1_FILL_MODE;
    fn GetSourceGeometryCount(&self) -> u32;
    fn GetSourceGeometries(
        &self,
        geometries: *mut Option<ID2D1Geometry>,
        geometriescount: u32
    );
}

Required Methods§

fn GetFillMode(&self) -> D2D1_FILL_MODE

fn GetSourceGeometryCount(&self) -> u32

fn GetSourceGeometries( &self, geometries: *mut Option<ID2D1Geometry>, geometriescount: u32 )

Object Safety§

This trait is not object safe.

Implementors§