include: Add struct D3D12_QUERY_DATA_PIPELINE_STATISTICS.

This commit is contained in:
Sven Hesse 2017-08-28 15:11:30 +02:00
parent 471041454d
commit 0379783c29
1 changed files with 15 additions and 0 deletions

View File

@ -1661,6 +1661,21 @@ typedef enum D3D12_QUERY_TYPE
D3D12_QUERY_TYPE_SO_STATISTICS_STREAM3 = 7,
} D3D12_QUERY_TYPE;
typedef struct D3D12_QUERY_DATA_PIPELINE_STATISTICS
{
UINT64 IAVertices;
UINT64 IAPrimitives;
UINT64 VSInvocations;
UINT64 GSInvocations;
UINT64 GSPrimitives;
UINT64 CInvocations;
UINT64 CPrimitives;
UINT64 PSInvocations;
UINT64 HSInvocations;
UINT64 DSInvocations;
UINT64 CSInvocations;
} D3D12_QUERY_DATA_PIPELINE_STATISTICS;
typedef enum D3D12_PREDICATION_OP
{
D3D12_PREDICATION_OP_EQUAL_ZERO = 0,