pub trait IDirectXVideoMemoryConfiguration_Impl: Sized {
    // Required methods
    fn GetAvailableSurfaceTypeByIndex(
        &self,
        dwtypeindex: u32,
    ) -> Result<DXVA2_SurfaceType>;
    fn SetSurfaceType(&self, dwtype: DXVA2_SurfaceType) -> Result<()>;
}

Required Methods§

fn GetAvailableSurfaceTypeByIndex( &self, dwtypeindex: u32, ) -> Result<DXVA2_SurfaceType>

fn SetSurfaceType(&self, dwtype: DXVA2_SurfaceType) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§