Module: wine
Branch: master
Commit: b33177355e4449178c79a6b61371e0c77f6b48e1
URL: https://source.winehq.org/git/wine.git/?a=commit;h=b33177355e4449178c79a6b6…
Author: Giovanni Mascellani <gio(a)debian.org>
Date: Tue Feb 11 16:50:03 2020 +0100
d2d1: Trim rasterization area when drawing Bézier curves.
A Bézier stroke can lie outside its "defining triangle" for at most
half of the stroke width, not an entire stroke width.
Signed-off-by: Giovanni Mascellani <gio(a)debian.org>
Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/d2d1/device.c | 112 ++++++++++++++++++++++++++---------------------------
1 file changed, 56 insertions(+), 56 deletions(-)
Diff: https://source.winehq.org/git/wine.git/?a=commitdiff;h=b33177355e4449178c79…
Module: wine
Branch: master
Commit: 24fe0b82dfeafb7270b49a47c1c10dbaa0845252
URL: https://source.winehq.org/git/wine.git/?a=commit;h=24fe0b82dfeafb7270b49a47…
Author: Louis Lenders <xerox.xerox2000x(a)gmail.com>
Date: Thu Jan 30 13:25:44 2020 +0100
vga: Add stub dll.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=48424
Signed-off-by: Louis Lenders <xerox.xerox2000x(a)gmail.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
configure | 2 ++
configure.ac | 1 +
dlls/vga/Makefile.in | 3 +++
dlls/vga/version.rc | 28 ++++++++++++++++++++++++++++
dlls/vga/vga.spec | 1 +
5 files changed, 35 insertions(+)
diff --git a/configure b/configure
index 2f9654fca0..dd2856d2ef 100755
--- a/configure
+++ b/configure
@@ -1613,6 +1613,7 @@ enable_vcruntime140
enable_vcruntime140_1
enable_vdmdbg
enable_version
+enable_vga
enable_virtdisk
enable_vssapi
enable_vulkan_1
@@ -20918,6 +20919,7 @@ wine_fn_config_makefile dlls/vdmdbg enable_vdmdbg
wine_fn_config_makefile dlls/ver.dll16 enable_win16
wine_fn_config_makefile dlls/version enable_version
wine_fn_config_makefile dlls/version/tests enable_tests
+wine_fn_config_makefile dlls/vga enable_vga
wine_fn_config_makefile dlls/virtdisk enable_virtdisk
wine_fn_config_makefile dlls/virtdisk/tests enable_tests
wine_fn_config_makefile dlls/vmm.vxd enable_win16
diff --git a/configure.ac b/configure.ac
index 28d3173335..083369fdd7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3724,6 +3724,7 @@ WINE_CONFIG_MAKEFILE(dlls/vdmdbg)
WINE_CONFIG_MAKEFILE(dlls/ver.dll16,enable_win16)
WINE_CONFIG_MAKEFILE(dlls/version)
WINE_CONFIG_MAKEFILE(dlls/version/tests)
+WINE_CONFIG_MAKEFILE(dlls/vga)
WINE_CONFIG_MAKEFILE(dlls/virtdisk)
WINE_CONFIG_MAKEFILE(dlls/virtdisk/tests)
WINE_CONFIG_MAKEFILE(dlls/vmm.vxd,enable_win16)
diff --git a/dlls/vga/Makefile.in b/dlls/vga/Makefile.in
new file mode 100644
index 0000000000..223b607f22
--- /dev/null
+++ b/dlls/vga/Makefile.in
@@ -0,0 +1,3 @@
+MODULE = vga.dll
+
+RC_SRCS = version.rc
diff --git a/dlls/vga/version.rc b/dlls/vga/version.rc
new file mode 100644
index 0000000000..4c63f7ef8a
--- /dev/null
+++ b/dlls/vga/version.rc
@@ -0,0 +1,28 @@
+/*
+ * Copyright 2020 Louis Lenders
+ *
+ * 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
+ */
+
+#define WINE_FILEDESCRIPTION_STR "Wine vga DLL"
+#define WINE_FILENAME_STR "vga.dll"
+
+/* these values come from Windows 7 SP1 */
+#define WINE_FILEVERSION 6,1,7600,16385
+#define WINE_FILEVERSION_STR "6.1.7600.16385"
+#define WINE_PRODUCTVERSION 6,1,7600,16385
+#define WINE_PRODUCTVERSION_STR "6.1.7600.16385"
+
+#include "wine/wine_common_ver.rc"
diff --git a/dlls/vga/vga.spec b/dlls/vga/vga.spec
new file mode 100644
index 0000000000..556df42ea1
--- /dev/null
+++ b/dlls/vga/vga.spec
@@ -0,0 +1 @@
+# nothing