namespace MoonWorks.Graphics { /// /// Information that the pipeline needs about a shader. /// public struct GraphicsShaderInfo { public ShaderModule ShaderModule; public string EntryPointName; public uint UniformBufferSize; public uint SamplerBindingCount; } }