namespace MoonWorks.Graphics { /// /// Specifies how to interpet vertex data in a buffer to be passed to the vertex shader. /// public struct VertexInputState { public VertexBinding[] VertexBindings; public VertexAttribute[] VertexAttributes; } }