include/d3d11: Add definitions for indirect draw arguments.
Signed-off-by: Józef Kucia <jkucia@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
deae0044f4
commit
792f42f6d3
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue