pub trait ID3D11VideoDevice2_Impl: Sized + ID3D11VideoDevice1_Impl {
    // Required methods
    fn CheckFeatureSupport(
        &self,
        feature: D3D11_FEATURE_VIDEO,
        pfeaturesupportdata: *mut c_void,
        featuresupportdatasize: u32,
    ) -> Result<()>;
    fn NegotiateCryptoSessionKeyExchangeMT(
        &self,
        pcryptosession: Option<&ID3D11CryptoSession>,
        flags: D3D11_CRYPTO_SESSION_KEY_EXCHANGE_FLAGS,
        datasize: u32,
        pdata: *mut c_void,
    ) -> Result<()>;
}

Required Methods§

fn CheckFeatureSupport( &self, feature: D3D11_FEATURE_VIDEO, pfeaturesupportdata: *mut c_void, featuresupportdatasize: u32, ) -> Result<()>

fn NegotiateCryptoSessionKeyExchangeMT( &self, pcryptosession: Option<&ID3D11CryptoSession>, flags: D3D11_CRYPTO_SESSION_KEY_EXCHANGE_FLAGS, datasize: u32, pdata: *mut c_void, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§