[][src]Struct winapi::shared::dxgi1_2::IDXGISwapChain1

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

Fields

lpVtbl: *const IDXGISwapChain1Vtbl

Methods

impl IDXGISwapChain1[src]

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

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

pub unsafe fn GetHwnd(&self, pHwnd: *mut HWND) -> HRESULT[src]

pub unsafe fn GetCoreWindow(
    &self,
    refiid: REFGUID,
    ppUnk: *mut *mut c_void
) -> HRESULT
[src]

pub unsafe fn Present1(
    &self,
    SyncInterval: UINT,
    PresentFlags: UINT,
    pPresentParameters: *const DXGI_PRESENT_PARAMETERS
) -> HRESULT
[src]

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

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

pub unsafe fn SetBackgroundColor(&self, pColor: *const DXGI_RGBA) -> HRESULT[src]

pub unsafe fn GetBackgroundColor(&self, pColor: *mut DXGI_RGBA) -> HRESULT[src]

pub unsafe fn SetRotation(&self, Rotation: DXGI_MODE_ROTATION) -> HRESULT[src]

pub unsafe fn GetRotation(&self, pRotation: *mut DXGI_MODE_ROTATION) -> HRESULT[src]

Methods from Deref<Target = IDXGISwapChain>

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]

Trait Implementations

impl Interface for IDXGISwapChain1[src]

impl Deref for IDXGISwapChain1[src]

type Target = IDXGISwapChain

The resulting type after dereferencing.

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]