#[repr(C)]pub struct ID3D11VideoProcessorEnumerator {
pub lpVtbl: *const ID3D11VideoProcessorEnumeratorVtbl,
}
Fields§
§lpVtbl: *const ID3D11VideoProcessorEnumeratorVtbl
Implementations§
Source§impl ID3D11VideoProcessorEnumerator
impl ID3D11VideoProcessorEnumerator
pub unsafe fn GetVideoProcessorContentDesc( &self, pContentDesc: *mut D3D11_VIDEO_PROCESSOR_CONTENT_DESC, ) -> HRESULT
pub unsafe fn CheckVideoProcessorFormat( &self, Format: DXGI_FORMAT, pFlags: *mut UINT, ) -> HRESULT
pub unsafe fn GetVideoProcessorCaps( &self, pCaps: *mut D3D11_VIDEO_PROCESSOR_CAPS, ) -> HRESULT
pub unsafe fn GetVideoProcessorRateConversionCaps( &self, TypeIndex: UINT, pCaps: *mut D3D11_VIDEO_PROCESSOR_RATE_CONVERSION_CAPS, ) -> HRESULT
pub unsafe fn GetVideoProcessorCustomRate( &self, TypeIndex: UINT, CustomRateIndex: UINT, pRate: *mut D3D11_VIDEO_PROCESSOR_CUSTOM_RATE, ) -> HRESULT
pub unsafe fn GetVideoProcessorFilterRange( &self, Filter: D3D11_VIDEO_PROCESSOR_FILTER, Range: *mut D3D11_VIDEO_PROCESSOR_FILTER_RANGE, ) -> HRESULT
Methods from Deref<Target = ID3D11DeviceChild>§
pub unsafe fn GetDevice(&self, ppDevice: *mut *mut ID3D11Device)
pub unsafe fn GetPrivateData( &self, guid: REFGUID, pDataSize: *mut UINT, pData: *mut c_void, ) -> HRESULT
pub unsafe fn SetPrivateData( &self, guid: REFGUID, DataSize: UINT, pData: *const c_void, ) -> HRESULT
pub unsafe fn SetPrivateDataInterface( &self, guid: REFGUID, pData: *const IUnknown, ) -> HRESULT
Trait Implementations§
Source§impl Deref for ID3D11VideoProcessorEnumerator
impl Deref for ID3D11VideoProcessorEnumerator
Source§type Target = ID3D11DeviceChild
type Target = ID3D11DeviceChild
The resulting type after dereferencing.
Source§fn deref(&self) -> &ID3D11DeviceChild
fn deref(&self) -> &ID3D11DeviceChild
Dereferences the value.
Auto Trait Implementations§
impl Freeze for ID3D11VideoProcessorEnumerator
impl RefUnwindSafe for ID3D11VideoProcessorEnumerator
impl !Send for ID3D11VideoProcessorEnumerator
impl !Sync for ID3D11VideoProcessorEnumerator
impl Unpin for ID3D11VideoProcessorEnumerator
impl UnwindSafe for ID3D11VideoProcessorEnumerator
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more