Add indirect draw command struct #5

Merged
cosmonaut merged 1 commits from TheSpydog/RefreshCS:indirect-struct into main 2023-01-04 18:44:46 +00: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
{