pub trait ID2D1EffectContext2_Impl: Sized + ID2D1EffectContext1_Impl {
    // Required methods
    fn CreateColorContextFromDxgiColorSpace(
        &self,
        colorspace: DXGI_COLOR_SPACE_TYPE
    ) -> Result<ID2D1ColorContext1>;
    fn CreateColorContextFromSimpleColorProfile(
        &self,
        simpleprofile: *const D2D1_SIMPLE_COLOR_PROFILE
    ) -> Result<ID2D1ColorContext1>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§