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