this repo has no description
1namespace Peridot;
2
3/// <summary>
4/// Describes a image in Peridot.
5/// </summary>
6public struct ImageDescription
7{
8 /// <summary>
9 /// Format of the image data.
10 /// </summary>
11 /// <value>Internal pixel format of image data.</value>
12 public PixelFormat Format { get; set; }
13
14 /// <summary>
15 /// The width of image.
16 /// </summary>
17 /// <value>Image width.</value>
18 public uint Width { get; set; }
19
20 /// <summary>
21 /// The height of image.
22 /// </summary>
23 /// <value>Image height.</value>
24 public uint Height { get; set; }
25}