Files
Vortice.Win32/src/Vortice.Win32.Graphics.Direct2D/Generated/SpriteOptions.cs

24 lines
994 B
C#

// ------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
// ------------------------------------------------------------------------------
namespace Win32.Graphics.Direct2D;
/// <include file='../Direct2D.xml' path='doc/member[@name="D2D1_SPRITE_OPTIONS"]/*' />
/// <unmanaged>D2D1_SPRITE_OPTIONS</unmanaged>
[Flags]
public enum SpriteOptions : uint
{
/// <include file='../Direct2D.xml' path='doc/member[@name="D2D1_SPRITE_OPTIONS::D2D1_SPRITE_OPTIONS_NONE"]/*' />
/// <unmanaged>D2D1_SPRITE_OPTIONS_NONE</unmanaged>
None = 0,
/// <include file='../Direct2D.xml' path='doc/member[@name="D2D1_SPRITE_OPTIONS::D2D1_SPRITE_OPTIONS_CLAMP_TO_SOURCE_RECTANGLE"]/*' />
/// <unmanaged>D2D1_SPRITE_OPTIONS_CLAMP_TO_SOURCE_RECTANGLE</unmanaged>
ClampToSourceRectangle = 1,
}