Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

D3D11_QUERY_DATA_SO_STATISTICS structure

Query information about the amount of data streamed out to the stream-output buffers in between ID3D11DeviceContext::Begin and ID3D11DeviceContext::End.

Syntax


typedef struct D3D11_QUERY_DATA_SO_STATISTICS {
  UINT64 NumPrimitivesWritten;
  UINT64 PrimitivesStorageNeeded;
} D3D11_QUERY_DATA_SO_STATISTICS;

Members

NumPrimitivesWritten

Type: UINT64

Number of primitives (that is, points, lines, and triangles) written to the stream-output buffers.

PrimitivesStorageNeeded

Type: UINT64

Number of primitives that would have been written to the stream-output buffers if there had been enough space for them all.

Requirements

Header

D3D11.h

See also

Core Structures

 

 

Show:
© 2017 Microsoft