Module: wine Branch: master Commit: 393efc3f4d6d89e09221d83e88735ef91f595e82 URL: http://source.winehq.org/git/wine.git/?a=commit;h=393efc3f4d6d89e09221d83e88... Author: Jacek Caban <jacek(a)codeweavers.com> Date: Tue May 16 18:07:18 2017 +0200 d3d11.idl: Added D3D11_QUERY_DATA_PIPELINE_STATISTICS declaration. Signed-off-by: Jacek Caban <jacek(a)codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- include/d3d11.idl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/include/d3d11.idl b/include/d3d11.idl index 371ff2f..5c47d83 100644 --- a/include/d3d11.idl +++ b/include/d3d11.idl @@ -1832,6 +1832,21 @@ typedef struct D3D11_QUERY_DATA_TIMESTAMP_DISJOINT BOOL Disjoint; } D3D11_QUERY_DATA_TIMESTAMP_DISJOINT; +typedef struct D3D11_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; +} D3D11_QUERY_DATA_PIPELINE_STATISTICS; + [ object, local,