=?UTF-8?Q?J=C3=B3zef=20Kucia=20?=: include/d3d11: Add definitions for indirect draw arguments.

Alexandre Julliard julliard at winehq.org
Thu Nov 2 17:28:49 CDT 2017


Module: wine
Branch: master
Commit: 792f42f6d3960ba128991315ea91a7d1f6cd966c
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=792f42f6d3960ba128991315ea91a7d1f6cd966c

Author: Józef Kucia <jkucia at codeweavers.com>
Date:   Wed Nov  1 22:08:46 2017 +0100

include/d3d11: Add definitions for indirect draw arguments.

Signed-off-by: Józef Kucia <jkucia at codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 include/d3d11.idl | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/include/d3d11.idl b/include/d3d11.idl
index ba2cad8..a7b9812 100644
--- a/include/d3d11.idl
+++ b/include/d3d11.idl
@@ -2101,6 +2101,23 @@ typedef struct D3D11_QUERY_DATA_PIPELINE_STATISTICS
     UINT64 CSInvocations;
 } D3D11_QUERY_DATA_PIPELINE_STATISTICS;
 
+typedef struct D3D11_DRAW_INSTANCED_INDIRECT_ARGS
+{
+    UINT VertexCountPerInstance;
+    UINT InstanceCount;
+    UINT StartVertexLocation;
+    UINT StartInstanceLocation;
+} D3D11_DRAW_INSTANCED_INDIRECT_ARGS;
+
+typedef struct D3D11_DRAW_INDEXED_INSTANCED_INDIRECT_ARGS
+{
+    UINT IndexCountPerInstance;
+    UINT InstanceCount;
+    UINT StartIndexLocation;
+    INT BaseVertexLocation;
+    UINT StartInstanceLocation;
+} D3D11_DRAW_INDEXED_INSTANCED_INDIRECT_ARGS;
+
 typedef struct D3D11_AUTHENTICATED_CONFIGURE_INPUT
 {
     D3D11_OMAC omac;




More information about the wine-cvs mailing list