Add IndirectDrawCommand struct (#39)

Co-authored-by: Caleb Cornett <caleb.cornett@outlook.com>
Reviewed-on: #39
Co-authored-by: TheSpydog <thespydog@noreply.example.org>
Co-committed-by: TheSpydog <thespydog@noreply.example.org>
pull/40/head
TheSpydog 2023-01-04 18:44:56 +00:00 committed by cosmonaut
parent 1fb3e5adf0
commit 230c1b41b4
1 changed files with 21 additions and 0 deletions

View File

@ -364,4 +364,25 @@ namespace MoonWorks.Graphics
BlendState = blendState;
}
}
[StructLayout(LayoutKind.Sequential)]
public struct IndirectDrawCommand
{
public uint VertexCount;
public uint InstanceCount;
public uint FirstVertex;
public uint FirstInstance;
public IndirectDrawCommand(
uint vertexCount,
uint instanceCount,
uint firstVertex,
uint firstInstance
) {
VertexCount = vertexCount;
InstanceCount = instanceCount;
FirstVertex = firstVertex;
FirstInstance = firstInstance;
}
}
}