pub trait ID2D1Device4_Impl: Sized + ID2D1Device3_Impl {
    // Required methods
    fn CreateDeviceContext5(
        &self,
        options: D2D1_DEVICE_CONTEXT_OPTIONS
    ) -> Result<ID2D1DeviceContext4>;
    fn SetMaximumColorGlyphCacheMemory(&self, maximuminbytes: u64);
    fn GetMaximumColorGlyphCacheMemory(&self) -> u64;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§