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

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

Fields

lpVtbl: *const IDXGISwapChain2Vtbl

Methods

impl IDXGISwapChain2[src]

pub unsafe fn SetSourceSize(&self, Width: UINT, Height: UINT) -> HRESULT[src]

pub unsafe fn GetSourceSize(
    &self,
    pWidth: *mut UINT,
    pHeight: *mut UINT
) -> HRESULT
[src]

pub unsafe fn SetMaximumFrameLatency(&self, MaxLatency: UINT) -> HRESULT[src]

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

pub unsafe fn GetFrameLatencyWaitableObject(&self) -> HANDLE[src]

pub unsafe fn SetMatrixTransform(
    &self,
    pMatrix: *const DXGI_MATRIX_3X2_F
) -> HRESULT
[src]

pub unsafe fn GetMatrixTransform(
    &self,
    pMatrix: *mut DXGI_MATRIX_3X2_F
) -> HRESULT
[src]

Methods from Deref<Target = IDXGISwapChain1>

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]

Trait Implementations

impl Interface for IDXGISwapChain2[src]

impl Deref for IDXGISwapChain2[src]

type Target = IDXGISwapChain1

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]