Struct D3D11QueryDataPipelineStatistics
Assembly: JeremyAnsel.DirectX.D3D11.dll
Syntax
public struct D3D11QueryDataPipelineStatistics : IEquatable<D3D11QueryDataPipelineStatistics>
Properties
|
Edit this page
View Source
ComputeShaderInvocations
Gets the number of times a compute shader was invoked.
Declaration
public ulong ComputeShaderInvocations { get; }
Property Value
|
Edit this page
View Source
DomainShaderInvocations
Gets the number of times a domain shader was invoked.
Declaration
public ulong DomainShaderInvocations { get; }
Property Value
|
Edit this page
View Source
GeometryShaderInvocations
Gets the number of times a geometry shader was invoked.
Declaration
public ulong GeometryShaderInvocations { get; }
Property Value
|
Edit this page
View Source
GeometryShaderPrimitives
Gets the number of primitives output by a geometry shader.
Declaration
public ulong GeometryShaderPrimitives { get; }
Property Value
|
Edit this page
View Source
HullShaderInvocations
Gets the number of times a hull shader was invoked.
Declaration
public ulong HullShaderInvocations { get; }
Property Value
|
Edit this page
View Source
Gets the number of primitives read by the input assembler.
Declaration
public ulong InputAssemblerPrimitives { get; }
Property Value
|
Edit this page
View Source
Gets the number of vertices read by input assembler.
Declaration
public ulong InputAssemblerVertices { get; }
Property Value
|
Edit this page
View Source
PixelShaderInvocations
Gets the number of times a pixel shader was invoked.
Declaration
public ulong PixelShaderInvocations { get; }
Property Value
|
Edit this page
View Source
RasterizerInvocations
Gets the number of primitives that were sent to the rasterizer.
Declaration
public ulong RasterizerInvocations { get; }
Property Value
|
Edit this page
View Source
RasterizerPrimitives
Gets the number of primitives that were rendered.
Declaration
public ulong RasterizerPrimitives { get; }
Property Value
|
Edit this page
View Source
VertexShaderInvocations
Gets the number of times a vertex shader was invoked.
Declaration
public ulong VertexShaderInvocations { get; }
Property Value
Methods
|
Edit this page
View Source
Equals(D3D11QueryDataPipelineStatistics)
Declaration
public readonly bool Equals(D3D11QueryDataPipelineStatistics 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 D3D11QueryDataPipelineStatistics NativeReadFrom(nint buffer)
Parameters
| Type |
Name |
Description |
| nint |
buffer |
|
Returns
|
Edit this page
View Source
NativeReadFrom(nint, Span<D3D11QueryDataPipelineStatistics>)
Declaration
public static void NativeReadFrom(nint buffer, Span<D3D11QueryDataPipelineStatistics> 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 D3D11QueryDataPipelineStatistics)
Declaration
public static void NativeWriteTo(nint buffer, in D3D11QueryDataPipelineStatistics obj)
Parameters
|
Edit this page
View Source
NativeWriteTo(nint, ReadOnlySpan<D3D11QueryDataPipelineStatistics>)
Declaration
public static void NativeWriteTo(nint buffer, ReadOnlySpan<D3D11QueryDataPipelineStatistics> objects)
Parameters
Operators
|
Edit this page
View Source
operator ==(D3D11QueryDataPipelineStatistics, D3D11QueryDataPipelineStatistics)
Declaration
public static bool operator ==(D3D11QueryDataPipelineStatistics left, D3D11QueryDataPipelineStatistics right)
Parameters
Returns
|
Edit this page
View Source
operator !=(D3D11QueryDataPipelineStatistics, D3D11QueryDataPipelineStatistics)
Declaration
public static bool operator !=(D3D11QueryDataPipelineStatistics left, D3D11QueryDataPipelineStatistics right)
Parameters
Returns
Implements