[][src]Struct winapi::shared::dxgi::IDXGISwapChain

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

Fields

lpVtbl: *const IDXGISwapChainVtbl

Methods

impl IDXGISwapChain[src]

pub unsafe fn Present(&self, SyncInterval: UINT, Flags: UINT) -> HRESULT[src]

pub unsafe fn GetBuffer(
    &self,
    Buffer: UINT,
    riid: REFIID,
    ppSurface: *mut *mut c_void
) -> HRESULT
[src]

pub unsafe fn SetFullscreenState(
    &self,
    Fullscreen: BOOL,
    pTarget: *mut IDXGIOutput
) -> HRESULT
[src]

pub unsafe fn GetFullscreenState(
    &self,
    pFullscreen: *mut BOOL,
    ppTarget: *mut *mut IDXGIOutput
) -> HRESULT
[src]

pub unsafe fn GetDesc(&self, pDesc: *mut DXGI_SWAP_CHAIN_DESC) -> HRESULT[src]

pub unsafe fn ResizeBuffers(
    &self,
    BufferCount: UINT,
    Width: UINT,
    Height: UINT,
    NewFormat: DXGI_FORMAT,
    SwapChainFlags: UINT
) -> HRESULT
[src]

pub unsafe fn ResizeTarget(
    &self,
    pNewTargetParameters: *const DXGI_MODE_DESC
) -> HRESULT
[src]

pub unsafe fn GetContainingOutput(
    &self,
    ppOutput: *mut *mut IDXGIOutput
) -> HRESULT
[src]

pub unsafe fn GetFrameStatistics(
    &self,
    pStats: *mut DXGI_FRAME_STATISTICS
) -> HRESULT
[src]

pub unsafe fn GetLastPresentCount(
    &self,
    pLastPresentCount: *mut UINT
) -> HRESULT
[src]

Methods from Deref<Target = IDXGIDeviceSubObject>

pub unsafe fn GetDevice(
    &self,
    riid: REFIID,
    ppDevice: *mut *mut c_void
) -> HRESULT
[src]

Trait Implementations

impl Interface for IDXGISwapChain[src]

impl Deref for IDXGISwapChain[src]

type Target = IDXGIDeviceSubObject

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]