Struct DxgiSwapChainFullscreenDesc
Describes full-screen mode for a swap chain.
Implements
Inherited Members
Namespace: JeremyAnsel.DirectX.Dxgi
Assembly: JeremyAnsel.DirectX.Dxgi.dll
Syntax
public struct DxgiSwapChainFullscreenDesc : IEquatable<DxgiSwapChainFullscreenDesc>
Properties
| Edit this page View SourceIsWindowed
Gets or sets a value indicating whether the swap chain is in windowed mode.
Declaration
public bool IsWindowed { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
RefreshRate
Gets or sets a DxgiRational structure that describes the refresh rate in hertz.
Declaration
public DxgiRational RefreshRate { get; set; }
Property Value
| Type | Description |
|---|---|
| DxgiRational |
Scaling
Gets or sets a member of the DxgiModeScaling enumeration that describes the scaling mode.
Declaration
public DxgiModeScaling Scaling { get; set; }
Property Value
| Type | Description |
|---|---|
| DxgiModeScaling |
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
| Type | Description |
|---|---|
| DxgiModeScanlineOrder |
Methods
| Edit this page View SourceEquals(DxgiSwapChainFullscreenDesc)
Determines whether the specified object is equal to the current object.
Declaration
public bool Equals(DxgiSwapChainFullscreenDesc other)
Parameters
| Type | Name | Description |
|---|---|---|
| DxgiSwapChainFullscreenDesc | other | The object to compare with the current object. |
Returns
| Type | Description |
|---|---|
| bool |
Equals(object?)
Determines whether the specified object is equal to the current object.
Declaration
public override bool Equals(object? obj)
Parameters
| Type | Name | Description |
|---|---|---|
| object | obj | The object to compare with the current object. |
Returns
| Type | Description |
|---|---|
| bool |
Overrides
| Edit this page View SourceGetHashCode()
Returns the hash code for this instance.
Declaration
public override int GetHashCode()
Returns
| Type | Description |
|---|---|
| int | A 32-bit signed integer that is the hash code for this instance. |
Overrides
Operators
| Edit this page View Sourceoperator ==(DxgiSwapChainFullscreenDesc, DxgiSwapChainFullscreenDesc)
Compares two DxgiSwapChainFullscreenDesc objects. The result specifies whether the values of the two objects are equal.
Declaration
public static bool operator ==(DxgiSwapChainFullscreenDesc left, DxgiSwapChainFullscreenDesc right)
Parameters
| Type | Name | Description |
|---|---|---|
| DxgiSwapChainFullscreenDesc | left | The left DxgiSwapChainFullscreenDesc to compare. |
| DxgiSwapChainFullscreenDesc | right | The right DxgiSwapChainFullscreenDesc to compare. |
Returns
| Type | Description |
|---|---|
| bool |
operator !=(DxgiSwapChainFullscreenDesc, DxgiSwapChainFullscreenDesc)
Compares two DxgiSwapChainFullscreenDesc objects. The result specifies whether the values of the two objects are unequal.
Declaration
public static bool operator !=(DxgiSwapChainFullscreenDesc left, DxgiSwapChainFullscreenDesc right)
Parameters
| Type | Name | Description |
|---|---|---|
| DxgiSwapChainFullscreenDesc | left | The left DxgiSwapChainFullscreenDesc to compare. |
| DxgiSwapChainFullscreenDesc | right | The right DxgiSwapChainFullscreenDesc to compare. |
Returns
| Type | Description |
|---|---|
| bool |