Struct D3D11FeatureDataThreading
Describes the multi-threading features that are supported by the current graphics driver.
Assembly: JeremyAnsel.DirectX.D3D11.dll
Syntax
public struct D3D11FeatureDataThreading : IEquatable<D3D11FeatureDataThreading>
Properties
|
Edit this page
View Source
IsDriverCommandListsSupported
Gets a value indicating whether command lists are supported by the current driver.
Declaration
public bool IsDriverCommandListsSupported { get; }
Property Value
|
Edit this page
View Source
IsDriverConcurrentCreatesSupported
Gets a value indicating whether resources can be created concurrently on multiple threads while drawing.
Declaration
public bool IsDriverConcurrentCreatesSupported { get; }
Property Value
Methods
|
Edit this page
View Source
Equals(D3D11FeatureDataThreading)
Declaration
public readonly bool Equals(D3D11FeatureDataThreading 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 D3D11FeatureDataThreading NativeReadFrom(nint buffer)
Parameters
| Type |
Name |
Description |
| nint |
buffer |
|
Returns
|
Edit this page
View Source
NativeReadFrom(nint, Span<D3D11FeatureDataThreading>)
Declaration
public static void NativeReadFrom(nint buffer, Span<D3D11FeatureDataThreading> 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 D3D11FeatureDataThreading)
Declaration
public static void NativeWriteTo(nint buffer, in D3D11FeatureDataThreading obj)
Parameters
|
Edit this page
View Source
NativeWriteTo(nint, ReadOnlySpan<D3D11FeatureDataThreading>)
Declaration
public static void NativeWriteTo(nint buffer, ReadOnlySpan<D3D11FeatureDataThreading> objects)
Parameters
Operators
|
Edit this page
View Source
operator ==(D3D11FeatureDataThreading, D3D11FeatureDataThreading)
Declaration
public static bool operator ==(D3D11FeatureDataThreading left, D3D11FeatureDataThreading right)
Parameters
Returns
|
Edit this page
View Source
operator !=(D3D11FeatureDataThreading, D3D11FeatureDataThreading)
Declaration
public static bool operator !=(D3D11FeatureDataThreading left, D3D11FeatureDataThreading right)
Parameters
Returns
Implements