namespace MoonWorks.Graphics { /// /// A texture-level pair to be used when binding compute textures. /// public struct TextureLevelBinding { public Texture Texture; public uint MipLevel; public TextureLevelBinding(Texture texture, uint mipLevel = 0) { Texture = texture; MipLevel = mipLevel; } } }