add indirect draw command struct

pull/5/head
Caleb Cornett 2023-01-04 12:11:19 -05:00
parent 9068263afc
commit db76f87bde
1 changed files with 9 additions and 0 deletions

View File

@ -367,6 +367,15 @@ namespace RefreshCS
public uint level;
}
[StructLayout(LayoutKind.Sequential)]
public struct IndirectDrawCommand
{
public uint vertexCount;
public uint instanceCount;
public uint firstVertex;
public uint firstInstance;
}
[StructLayout(LayoutKind.Sequential)]
public struct SamplerStateCreateInfo
{