pub trait ID3D12VideoEncoderHeap_Impl: Sized + ID3D12Pageable_Impl {
    // Required methods
    fn GetNodeMask(&self) -> u32;
    fn GetEncoderHeapFlags(&self) -> D3D12_VIDEO_ENCODER_HEAP_FLAGS;
    fn GetCodec(&self) -> D3D12_VIDEO_ENCODER_CODEC;
    fn GetCodecProfile(
        &self,
        dstprofile: &D3D12_VIDEO_ENCODER_PROFILE_DESC
    ) -> Result<()>;
    fn GetCodecLevel(
        &self,
        dstlevel: &D3D12_VIDEO_ENCODER_LEVEL_SETTING
    ) -> Result<()>;
    fn GetResolutionListCount(&self) -> u32;
    fn GetResolutionList(
        &self,
        resolutionslistcount: u32,
        presolutionlist: *mut D3D12_VIDEO_ENCODER_PICTURE_RESOLUTION_DESC
    ) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§