oh dear
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Drawing.Drawing2D
|
||||
{
|
||||
/// <summary>Specifies whether commands in the graphics stack are terminated (flushed) immediately or executed as soon as possible.</summary>
|
||||
// Token: 0x02000046 RID: 70
|
||||
[Token(Token = "0x2000046")]
|
||||
public enum FlushIntention
|
||||
{
|
||||
/// <summary>Specifies that the stack of all graphics operations is flushed immediately.</summary>
|
||||
// Token: 0x040001B1 RID: 433
|
||||
[Token(Token = "0x40001B1")]
|
||||
Flush,
|
||||
/// <summary>Specifies that all graphics operations on the stack are executed as soon as possible. This synchronizes the graphics state.</summary>
|
||||
// Token: 0x040001B2 RID: 434
|
||||
[Token(Token = "0x40001B2")]
|
||||
Sync
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Drawing.Drawing2D
|
||||
{
|
||||
/// <summary>The <see cref="T:System.Drawing.Drawing2D.InterpolationMode" /> enumeration specifies the algorithm that is used when images are scaled or rotated.</summary>
|
||||
// Token: 0x02000047 RID: 71
|
||||
[Token(Token = "0x2000047")]
|
||||
public enum InterpolationMode
|
||||
{
|
||||
/// <summary>Equivalent to the <see cref="F:System.Drawing.Drawing2D.QualityMode.Invalid" /> element of the <see cref="T:System.Drawing.Drawing2D.QualityMode" /> enumeration.</summary>
|
||||
// Token: 0x040001B4 RID: 436
|
||||
[Token(Token = "0x40001B4")]
|
||||
Invalid = -1,
|
||||
/// <summary>Specifies default mode.</summary>
|
||||
// Token: 0x040001B5 RID: 437
|
||||
[Token(Token = "0x40001B5")]
|
||||
Default,
|
||||
/// <summary>Specifies low quality interpolation.</summary>
|
||||
// Token: 0x040001B6 RID: 438
|
||||
[Token(Token = "0x40001B6")]
|
||||
Low,
|
||||
/// <summary>Specifies high quality interpolation.</summary>
|
||||
// Token: 0x040001B7 RID: 439
|
||||
[Token(Token = "0x40001B7")]
|
||||
High,
|
||||
/// <summary>Specifies bilinear interpolation. No prefiltering is done. This mode is not suitable for shrinking an image below 50 percent of its original size.</summary>
|
||||
// Token: 0x040001B8 RID: 440
|
||||
[Token(Token = "0x40001B8")]
|
||||
Bilinear,
|
||||
/// <summary>Specifies bicubic interpolation. No prefiltering is done. This mode is not suitable for shrinking an image below 25 percent of its original size.</summary>
|
||||
// Token: 0x040001B9 RID: 441
|
||||
[Token(Token = "0x40001B9")]
|
||||
Bicubic,
|
||||
/// <summary>Specifies nearest-neighbor interpolation.</summary>
|
||||
// Token: 0x040001BA RID: 442
|
||||
[Token(Token = "0x40001BA")]
|
||||
NearestNeighbor,
|
||||
/// <summary>Specifies high-quality, bilinear interpolation. Prefiltering is performed to ensure high-quality shrinking.</summary>
|
||||
// Token: 0x040001BB RID: 443
|
||||
[Token(Token = "0x40001BB")]
|
||||
HighQualityBilinear,
|
||||
/// <summary>Specifies high-quality, bicubic interpolation. Prefiltering is performed to ensure high-quality shrinking. This mode produces the highest quality transformed images.</summary>
|
||||
// Token: 0x040001BC RID: 444
|
||||
[Token(Token = "0x40001BC")]
|
||||
HighQualityBicubic
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user