1
0
mirror of https://github.com/oliverbooth/VpSharp synced 2024-11-09 23:35:41 +00:00

Add xmldoc to ColorSpace

This commit is contained in:
Oliver Booth 2022-12-05 19:52:55 +00:00
parent 02f1d1394c
commit 5e30ef3877
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634

View File

@ -5,7 +5,14 @@
/// </summary>
public enum ColorSpace
{
/// <summary>
/// Linear color space.
/// </summary>
Linear,
// ReSharper disable once InconsistentNaming
/// <summary>
/// sRGB color space.
/// </summary>
sRGB
}