Compare commits

...

1 Commits

Author SHA1 Message Date
Caleb Cornett db76f87bde add indirect draw command struct 2023-01-04 12:11:19 -05:00
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
{