Struct D3D11QueryDataStreamOutputStatistics
Query information about the amount of data streamed out to the stream-output buffers in between Begin(D3D11Asynchronous) and End(D3D11Asynchronous).
Implements
Inherited Members
Namespace: JeremyAnsel.DirectX.D3D11
Assembly: JeremyAnsel.DirectX.D3D11.dll
Syntax
public struct D3D11QueryDataStreamOutputStatistics : IEquatable<D3D11QueryDataStreamOutputStatistics>
Properties
| Edit this page View SourceNumPrimitivesWritten
Gets the number of primitives (that is, points, lines, and triangles) written to the stream-output buffers.
Declaration
public ulong NumPrimitivesWritten { get; }
Property Value
Type | Description |
---|---|
ulong |
PrimitivesStorageNeeded
Gets the number of primitives that would have been written to the stream-output buffers if there had been enough space for them all.
Declaration
public ulong PrimitivesStorageNeeded { get; }
Property Value
Type | Description |
---|---|
ulong |
Methods
| Edit this page View SourceEquals(D3D11QueryDataStreamOutputStatistics)
Determines whether the specified object is equal to the current object.
Declaration
public bool Equals(D3D11QueryDataStreamOutputStatistics other)
Parameters
Type | Name | Description |
---|---|---|
D3D11QueryDataStreamOutputStatistics | 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 ==(D3D11QueryDataStreamOutputStatistics, D3D11QueryDataStreamOutputStatistics)
Compares two D3D11QueryDataStreamOutputStatistics objects. The result specifies whether the values of the two objects are equal.
Declaration
public static bool operator ==(D3D11QueryDataStreamOutputStatistics left, D3D11QueryDataStreamOutputStatistics right)
Parameters
Type | Name | Description |
---|---|---|
D3D11QueryDataStreamOutputStatistics | left | The left D3D11QueryDataStreamOutputStatistics to compare. |
D3D11QueryDataStreamOutputStatistics | right | The right D3D11QueryDataStreamOutputStatistics to compare. |
Returns
Type | Description |
---|---|
bool |
operator !=(D3D11QueryDataStreamOutputStatistics, D3D11QueryDataStreamOutputStatistics)
Compares two D3D11QueryDataStreamOutputStatistics objects. The result specifies whether the values of the two objects are unequal.
Declaration
public static bool operator !=(D3D11QueryDataStreamOutputStatistics left, D3D11QueryDataStreamOutputStatistics right)
Parameters
Type | Name | Description |
---|---|---|
D3D11QueryDataStreamOutputStatistics | left | The left D3D11QueryDataStreamOutputStatistics to compare. |
D3D11QueryDataStreamOutputStatistics | right | The right D3D11QueryDataStreamOutputStatistics to compare. |
Returns
Type | Description |
---|---|
bool |