Pipelight: Add a missing CDECL.

This commit is contained in:
Sebastian Lackner 2016-02-10 02:22:22 +01:00
parent 51917ee882
commit 09612a2923

View File

@ -1,4 +1,4 @@
From 832df3192f9eea905f6bd12b273735c5ec037249 Mon Sep 17 00:00:00 2001
From 646ed3caf72acf69a95ec771e01930a029228f57 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Michael=20M=C3=BCller?= <michael@fds-team.de>
Date: Sun, 20 Jul 2014 22:22:14 +0200
Subject: wined3d: allow changing strict drawing through an exported function
@ -22,14 +22,14 @@ index 5933b48..e3b954d 100644
@ cdecl wined3d_swapchain_create(ptr ptr ptr ptr ptr)
diff --git a/dlls/wined3d/wined3d_main.c b/dlls/wined3d/wined3d_main.c
index 0543d97..78cc3a2 100644
index 0543d97..6a62697 100644
--- a/dlls/wined3d/wined3d_main.c
+++ b/dlls/wined3d/wined3d_main.c
@@ -515,6 +515,11 @@ void wined3d_unregister_window(HWND window)
wined3d_wndproc_mutex_unlock();
}
+void wined3d_strictdrawing_set(int value)
+void CDECL wined3d_strictdrawing_set(int value)
+{
+ wined3d_settings.strict_draw_ordering = value;
+}