namespace Peridot; /// /// Describes a image in Peridot. /// public struct ImageDescription { /// /// Format of the image data. /// /// Internal pixel format of image data. public PixelFormat Format { get; set; } /// /// The width of image. /// /// Image width. public uint Width { get; set; } /// /// The height of image. /// /// Image height. public uint Height { get; set; } }