[PATCH 1/4] include: Add the D2D12DAffineTransform definitions.

Henri Verbeet hverbeet at codeweavers.com
Tue Jul 20 09:16:06 CDT 2021


From: Ziqing Hui <zhui at codeweavers.com>

Signed-off-by: Ziqing Hui <zhui at codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
---
This supersedes patch 209631.

 include/Makefile.in     |  1 +
 include/d2d1_1.idl      |  1 +
 include/d2d1effects.idl | 46 +++++++++++++++++++++++++++++++++++++++++
 3 files changed, 48 insertions(+)
 create mode 100755 include/d2d1effects.idl

diff --git a/include/Makefile.in b/include/Makefile.in
index 61a74a210c9..46cb0f53a5e 100644
--- a/include/Makefile.in
+++ b/include/Makefile.in
@@ -99,6 +99,7 @@ SOURCES = \
 	d2d1.idl \
 	d2d1_1.idl \
 	d2d1_2.idl \
+	d2d1effects.idl \
 	d2dbasetypes.h \
 	d2derr.h \
 	d3d.h \
diff --git a/include/d2d1_1.idl b/include/d2d1_1.idl
index 257a970968f..fdec8ae5f9c 100644
--- a/include/d2d1_1.idl
+++ b/include/d2d1_1.idl
@@ -17,6 +17,7 @@
  */
 
 import "d2d1.idl";
+import "d2d1effects.idl";
 
 interface ID2D1DeviceContext;
 interface ID2D1PathGeometry1;
diff --git a/include/d2d1effects.idl b/include/d2d1effects.idl
new file mode 100755
index 00000000000..ee1dbe94728
--- /dev/null
+++ b/include/d2d1effects.idl
@@ -0,0 +1,46 @@
+/*
+ * Copyright 2021 Ziqing Hui for CodeWeavers
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+cpp_quote("DEFINE_GUID(CLSID_D2D12DAffineTransform, 0x6aa97485,0x6354,0x4cfc,0x90,0x8c,0xe4,0xa7,0x4f,0x62,0xc9,0x6c);")
+
+typedef enum D2D1_BORDER_MODE
+{
+    D2D1_BORDER_MODE_SOFT = 0x0,
+    D2D1_BORDER_MODE_HARD = 0x1,
+    D2D1_BORDER_MODE_FORCE_DWORD = 0xffffffff
+} D2D1_BORDER_MODE;
+
+typedef enum D2D1_2DAFFINETRANSFORM_PROP
+{
+    D2D1_2DAFFINETRANSFORM_PROP_INTERPOLATION_MODE = 0x0,
+    D2D1_2DAFFINETRANSFORM_PROP_BORDER_MODE = 0x1,
+    D2D1_2DAFFINETRANSFORM_PROP_TRANSFORM_MATRIX = 0x2,
+    D2D1_2DAFFINETRANSFORM_PROP_SHARPNESS = 0x3,
+    D2D1_2DAFFINETRANSFORM_PROP_FORCE_DWORD = 0xffffffff
+} D2D1_2DAFFINETRANSFORM_PROP;
+
+typedef enum D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE
+{
+    D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE_NEAREST_NEIGHBOR = 0x0,
+    D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE_LINEAR = 0x1,
+    D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE_CUBIC = 0x2,
+    D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE_MULTI_SAMPLE_LINEAR = 0x3,
+    D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE_ANISOTROPIC = 0x4,
+    D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE_HIGH_QUALITY_CUBIC = 0x5,
+    D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE_FORCE_DWORD = 0xffffffff
+} D2D1_2DAFFINETRANSFORM_INTERPOLATION_MODE;
-- 
2.20.1




More information about the wine-devel mailing list