Struct DxgiSwapChainFullscreenDesc
Describes full-screen mode for a swap chain.
Assembly: JeremyAnsel.DirectX.Dxgi.dll
Syntax
public struct DxgiSwapChainFullscreenDesc : IEquatable<DxgiSwapChainFullscreenDesc>
Properties
|
Edit this page
View Source
IsWindowed
Gets or sets a value indicating whether the swap chain is in windowed mode.
Declaration
public bool IsWindowed { get; set; }
Property Value
|
Edit this page
View Source
RefreshRate
Gets or sets a DxgiRational structure that describes the refresh rate in hertz.
Declaration
public DxgiRational RefreshRate { get; set; }
Property Value
|
Edit this page
View Source
Scaling
Gets or sets a member of the DxgiModeScaling enumeration that describes the scaling mode.
Declaration
public DxgiModeScaling Scaling { get; set; }
Property Value
|
Edit this page
View Source
ScanlineOrdering
Gets or sets a member of the DxgiModeScanlineOrder enumeration that describes the scan-line drawing mode.
Declaration
public DxgiModeScanlineOrder ScanlineOrdering { get; set; }
Property Value
Methods
|
Edit this page
View Source
Equals(DxgiSwapChainFullscreenDesc)
Declaration
public readonly bool Equals(DxgiSwapChainFullscreenDesc other)
Parameters
Returns
|
Edit this page
View Source
Equals(object?)
Declaration
public override readonly bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
|
Edit this page
View Source
GetHashCode()
Declaration
public override readonly int GetHashCode()
Returns
Overrides
|
Edit this page
View Source
NativeReadFrom(nint)
Declaration
public static DxgiSwapChainFullscreenDesc NativeReadFrom(nint buffer)
Parameters
| Type |
Name |
Description |
| nint |
buffer |
|
Returns
|
Edit this page
View Source
NativeReadFrom(nint, Span<DxgiSwapChainFullscreenDesc>)
Declaration
public static void NativeReadFrom(nint buffer, Span<DxgiSwapChainFullscreenDesc> objects)
Parameters
|
Edit this page
View Source
NativeRequiredSize()
Declaration
public static int NativeRequiredSize()
Returns
|
Edit this page
View Source
NativeRequiredSize(int)
Declaration
public static int NativeRequiredSize(int count)
Parameters
| Type |
Name |
Description |
| int |
count |
|
Returns
|
Edit this page
View Source
NativeWriteTo(nint, in DxgiSwapChainFullscreenDesc)
Declaration
public static void NativeWriteTo(nint buffer, in DxgiSwapChainFullscreenDesc obj)
Parameters
|
Edit this page
View Source
NativeWriteTo(nint, ReadOnlySpan<DxgiSwapChainFullscreenDesc>)
Declaration
public static void NativeWriteTo(nint buffer, ReadOnlySpan<DxgiSwapChainFullscreenDesc> objects)
Parameters
Operators
|
Edit this page
View Source
operator ==(DxgiSwapChainFullscreenDesc, DxgiSwapChainFullscreenDesc)
Declaration
public static bool operator ==(DxgiSwapChainFullscreenDesc left, DxgiSwapChainFullscreenDesc right)
Parameters
Returns
|
Edit this page
View Source
operator !=(DxgiSwapChainFullscreenDesc, DxgiSwapChainFullscreenDesc)
Declaration
public static bool operator !=(DxgiSwapChainFullscreenDesc left, DxgiSwapChainFullscreenDesc right)
Parameters
Returns
Implements