[][src]Struct winapi::shared::dxgi1_3::IDXGIFactory3

#[repr(C)]
pub struct IDXGIFactory3 { pub lpVtbl: *const IDXGIFactory3Vtbl, }

Fields

lpVtbl: *const IDXGIFactory3Vtbl

Methods

impl IDXGIFactory3[src]

pub unsafe fn GetCreationFlags(&self) -> UINT[src]

Methods from Deref<Target = IDXGIFactory2>

pub unsafe fn IsWindowedStereoEnabled(&self) -> BOOL[src]

pub unsafe fn CreateSwapChainForHwnd(
    &self,
    pDevice: *mut IUnknown,
    hWnd: HWND,
    pDesc: *const DXGI_SWAP_CHAIN_DESC1,
    pFullscreenDesc: *const DXGI_SWAP_CHAIN_FULLSCREEN_DESC,
    pRestrictToOutput: *mut IDXGIOutput,
    ppSwapChain: *mut *mut IDXGISwapChain1
) -> HRESULT
[src]

pub unsafe fn CreateSwapChainForCoreWindow(
    &self,
    pDevice: *mut IUnknown,
    pWindow: *mut IUnknown,
    pDesc: *const DXGI_SWAP_CHAIN_DESC1,
    pRestrictToOutput: *mut IDXGIOutput,
    ppSwapChain: *mut *mut IDXGISwapChain1
) -> HRESULT
[src]

pub unsafe fn GetSharedResourceAdapterLuid(
    &self,
    hResource: HANDLE,
    pLuid: *mut LUID
) -> HRESULT
[src]

pub unsafe fn RegisterStereoStatusWindow(
    &self,
    WindowHandle: HWND,
    wMsg: UINT,
    pdwCookie: *mut DWORD
) -> HRESULT
[src]

pub unsafe fn RegisterStereoStatusEvent(
    &self,
    hEvent: HANDLE,
    pdwCookie: *mut DWORD
) -> HRESULT
[src]

pub unsafe fn UnregisterStereoStatus(&self, dwCookie: DWORD)[src]

pub unsafe fn RegisterOcclusionStatusWindow(
    &self,
    WindowHandle: HWND,
    wMsg: UINT,
    pdwCookie: *mut DWORD
) -> HRESULT
[src]

pub unsafe fn RegisterOcclusionStatusEvent(
    &self,
    hEvent: HANDLE,
    pdwCookie: *mut DWORD
) -> HRESULT
[src]

pub unsafe fn UnregisterOcclusionStatus(&self, dwCookie: DWORD)[src]

pub unsafe fn CreateSwapChainForComposition(
    &self,
    pDevice: *mut IUnknown,
    pDesc: *const DXGI_SWAP_CHAIN_DESC1,
    pRestrictToOutput: *mut IDXGIOutput,
    ppSwapChain: *mut *mut IDXGISwapChain1
) -> HRESULT
[src]

Trait Implementations

impl Interface for IDXGIFactory3[src]

impl Deref for IDXGIFactory3[src]

type Target = IDXGIFactory2

The resulting type after dereferencing.

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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, U> Into for T where
    U: From<T>, 
[src]

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

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

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