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

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

Fields

lpVtbl: *const IDXGIOutputVtbl

Methods

impl IDXGIOutput[src]

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

pub unsafe fn GetDisplayModeList(
    &self,
    EnumFormat: DXGI_FORMAT,
    Flags: UINT,
    pNumModes: *mut UINT,
    pDesc: *mut DXGI_MODE_DESC
) -> HRESULT
[src]

pub unsafe fn FindClosestMatchingMode(
    &self,
    pModeToMatch: *const DXGI_MODE_DESC,
    pClosestMatch: *mut DXGI_MODE_DESC,
    pConcernedDevice: *mut IUnknown
) -> HRESULT
[src]

pub unsafe fn WaitForVBlank(&self) -> HRESULT[src]

pub unsafe fn TakeOwnership(
    &self,
    pDevice: *mut IUnknown,
    Exclusive: BOOL
) -> HRESULT
[src]

pub unsafe fn ReleaseOwnership(&self)[src]

pub unsafe fn GetGammaControlCapabilities(
    &self,
    pGammaCaps: *mut DXGI_GAMMA_CONTROL_CAPABILITIES
) -> HRESULT
[src]

pub unsafe fn SetGammaControl(
    &self,
    pArray: *const DXGI_GAMMA_CONTROL
) -> HRESULT
[src]

pub unsafe fn GetGammaControl(&self, pArray: *mut DXGI_GAMMA_CONTROL) -> HRESULT[src]

pub unsafe fn SetDisplaySurface(
    &self,
    pScanoutSurface: *mut IDXGISurface
) -> HRESULT
[src]

pub unsafe fn GetDisplaySurfaceData(
    &self,
    pDestination: *mut IDXGISurface
) -> HRESULT
[src]

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

Methods from Deref<Target = IDXGIObject>

pub unsafe fn SetPrivateData(
    &self,
    Name: REFGUID,
    DataSize: UINT,
    pData: *const c_void
) -> HRESULT
[src]

pub unsafe fn SetPrivateDataInterface(
    &self,
    Name: REFGUID,
    pUnknown: *const IUnknown
) -> HRESULT
[src]

pub unsafe fn GetPrivateData(
    &self,
    Name: REFGUID,
    pDataSize: *mut UINT,
    pData: *mut c_void
) -> HRESULT
[src]

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

Trait Implementations

impl Interface for IDXGIOutput[src]

impl Deref for IDXGIOutput[src]

type Target = IDXGIObject

The resulting type after dereferencing.

Auto Trait Implementations

impl !Send for IDXGIOutput

impl !Sync for IDXGIOutput

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]