From 5cfea858815055bdda005578e787aad81a25b290 Mon Sep 17 00:00:00 2001 From: Phap Dieu Duong Date: Sat, 28 Jan 2023 15:38:58 +0800 Subject: [PATCH] add back: D2D1_BITMAP_BRUSH_PROPERTIES, D2D1_BITMAP_BRUSH_PROPERTIES1 --- .../Generated/D2D1_BITMAP_BRUSH_PROPERTIES.cs | 16 ++++++++++++++++ .../Generated/D2D1_BITMAP_BRUSH_PROPERTIES1.cs | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 Source/DXControl/DirectN/DirectWrite/Generated/D2D1_BITMAP_BRUSH_PROPERTIES.cs create mode 100644 Source/DXControl/DirectN/DirectWrite/Generated/D2D1_BITMAP_BRUSH_PROPERTIES1.cs diff --git a/Source/DXControl/DirectN/DirectWrite/Generated/D2D1_BITMAP_BRUSH_PROPERTIES.cs b/Source/DXControl/DirectN/DirectWrite/Generated/D2D1_BITMAP_BRUSH_PROPERTIES.cs new file mode 100644 index 0000000..4240da4 --- /dev/null +++ b/Source/DXControl/DirectN/DirectWrite/Generated/D2D1_BITMAP_BRUSH_PROPERTIES.cs @@ -0,0 +1,16 @@ +// c:\program files (x86)\windows kits\10\include\10.0.22000.0\um\d2d1.h(329,9) +using System.Runtime.InteropServices; + +namespace DirectN +{ + /// + /// Describes the extend modes and the interpolation mode of an ID2D1BitmapBrush. + /// + [StructLayout(LayoutKind.Sequential)] + public partial struct D2D1_BITMAP_BRUSH_PROPERTIES + { + public D2D1_EXTEND_MODE extendModeX; + public D2D1_EXTEND_MODE extendModeY; + public D2D1_BITMAP_INTERPOLATION_MODE interpolationMode; + } +} diff --git a/Source/DXControl/DirectN/DirectWrite/Generated/D2D1_BITMAP_BRUSH_PROPERTIES1.cs b/Source/DXControl/DirectN/DirectWrite/Generated/D2D1_BITMAP_BRUSH_PROPERTIES1.cs new file mode 100644 index 0000000..15c12f2 --- /dev/null +++ b/Source/DXControl/DirectN/DirectWrite/Generated/D2D1_BITMAP_BRUSH_PROPERTIES1.cs @@ -0,0 +1,16 @@ +// c:\program files (x86)\windows kits\10\include\10.0.22000.0\um\d2d1_1.h(506,9) +using System.Runtime.InteropServices; + +namespace DirectN +{ + /// + /// Describes the extend modes and the interpolation mode of an ID2D1BitmapBrush. + /// + [StructLayout(LayoutKind.Sequential)] + public partial struct D2D1_BITMAP_BRUSH_PROPERTIES1 + { + public D2D1_EXTEND_MODE extendModeX; + public D2D1_EXTEND_MODE extendModeY; + public D2D1_INTERPOLATION_MODE interpolationMode; + } +}