[][src]Struct winapi::shared::d3d9::IDirect3D9Vtbl

#[repr(C)]
pub struct IDirect3D9Vtbl {
    pub parent: IUnknownVtbl,
    pub RegisterSoftwareDevice: unsafe extern "system" fn(This: *mut IDirect3D9, pInitializeFunction: *mut VOID) -> HRESULT,
    pub GetAdapterCount: unsafe extern "system" fn(This: *mut IDirect3D9) -> UINT,
    pub GetAdapterIdentifier: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT, Flags: DWORD, pIdentifier: *mut D3DADAPTER_IDENTIFIER9) -> HRESULT,
    pub GetAdapterModeCount: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT, Format: D3DFORMAT) -> UINT,
    pub EnumAdapterModes: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT, Format: D3DFORMAT, Mode: UINT, pMode: *mut D3DDISPLAYMODE) -> HRESULT,
    pub GetAdapterDisplayMode: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT, pMode: *mut D3DDISPLAYMODE) -> HRESULT,
    pub CheckDeviceType: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT, DevType: D3DDEVTYPE, AdapterFormat: D3DFORMAT, BackBufferFormat: D3DFORMAT, bWindowed: BOOL) -> HRESULT,
    pub CheckDeviceFormat: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT, DeviceType: D3DDEVTYPE, AdapterFormat: D3DFORMAT, Usage: DWORD, RType: D3DRESOURCETYPE, CheckFormat: D3DFORMAT) -> HRESULT,
    pub CheckDeviceMultiSampleType: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT, DeviceType: D3DDEVTYPE, SurfaceFormat: D3DFORMAT, Windowed: BOOL, MultiSampleType: D3DMULTISAMPLE_TYPE, pQualityLevels: *mut DWORD) -> HRESULT,
    pub CheckDepthStencilMatch: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT, DeviceType: D3DDEVTYPE, AdapterFormat: D3DFORMAT, RenderTargetFormat: D3DFORMAT, DepthStencilFormat: D3DFORMAT) -> HRESULT,
    pub CheckDeviceFormatConversion: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT, DeviceType: D3DDEVTYPE, SourceFormat: D3DFORMAT, TargetFormat: D3DFORMAT) -> HRESULT,
    pub GetDeviceCaps: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT, DeviceType: D3DDEVTYPE, pCaps: *mut D3DCAPS9) -> HRESULT,
    pub GetAdapterMonitor: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT) -> HMONITOR,
    pub CreateDevice: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT, DeviceType: D3DDEVTYPE, hFocusWindow: HWND, BehaviorFlags: DWORD, pPresentationParameters: *mut D3DPRESENT_PARAMETERS, ppReturnedDeviceInterface: *mut *mut IDirect3DDevice9) -> HRESULT,
}

Fields

parent: IUnknownVtblRegisterSoftwareDevice: unsafe extern "system" fn(This: *mut IDirect3D9, pInitializeFunction: *mut VOID) -> HRESULTGetAdapterCount: unsafe extern "system" fn(This: *mut IDirect3D9) -> UINTGetAdapterIdentifier: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT, Flags: DWORD, pIdentifier: *mut D3DADAPTER_IDENTIFIER9) -> HRESULTGetAdapterModeCount: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT, Format: D3DFORMAT) -> UINTEnumAdapterModes: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT, Format: D3DFORMAT, Mode: UINT, pMode: *mut D3DDISPLAYMODE) -> HRESULTGetAdapterDisplayMode: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT, pMode: *mut D3DDISPLAYMODE) -> HRESULTCheckDeviceType: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT, DevType: D3DDEVTYPE, AdapterFormat: D3DFORMAT, BackBufferFormat: D3DFORMAT, bWindowed: BOOL) -> HRESULTCheckDeviceFormat: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT, DeviceType: D3DDEVTYPE, AdapterFormat: D3DFORMAT, Usage: DWORD, RType: D3DRESOURCETYPE, CheckFormat: D3DFORMAT) -> HRESULTCheckDeviceMultiSampleType: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT, DeviceType: D3DDEVTYPE, SurfaceFormat: D3DFORMAT, Windowed: BOOL, MultiSampleType: D3DMULTISAMPLE_TYPE, pQualityLevels: *mut DWORD) -> HRESULTCheckDepthStencilMatch: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT, DeviceType: D3DDEVTYPE, AdapterFormat: D3DFORMAT, RenderTargetFormat: D3DFORMAT, DepthStencilFormat: D3DFORMAT) -> HRESULTCheckDeviceFormatConversion: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT, DeviceType: D3DDEVTYPE, SourceFormat: D3DFORMAT, TargetFormat: D3DFORMAT) -> HRESULTGetDeviceCaps: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT, DeviceType: D3DDEVTYPE, pCaps: *mut D3DCAPS9) -> HRESULTGetAdapterMonitor: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT) -> HMONITORCreateDevice: unsafe extern "system" fn(This: *mut IDirect3D9, Adapter: UINT, DeviceType: D3DDEVTYPE, hFocusWindow: HWND, BehaviorFlags: DWORD, pPresentationParameters: *mut D3DPRESENT_PARAMETERS, ppReturnedDeviceInterface: *mut *mut IDirect3DDevice9) -> HRESULT

Auto Trait Implementations

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]