mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-09-13 09:17:20 -07:00
Added patch to add support for WINE_STRICT_DRAW_ORDERING environment variable
This commit is contained in:
parent
f7de528788
commit
1c6aeef3b4
@ -0,0 +1,34 @@
|
||||
From 34551d5eb1b88021766cafcb9046d1e76a2b3bf8 Mon Sep 17 00:00:00 2001
|
||||
From: Sebastian Lackner <sebastian@fds-team.de>
|
||||
Date: Mon, 13 Jan 2014 23:37:02 +0100
|
||||
Subject: wined3d: Allow to set strictDrawOrdering via environment variable
|
||||
|
||||
---
|
||||
dlls/wined3d/wined3d_main.c | 4 ++++
|
||||
1 file changed, 4 insertions(+)
|
||||
|
||||
diff --git a/dlls/wined3d/wined3d_main.c b/dlls/wined3d/wined3d_main.c
|
||||
index a0ecfa7..fa89700 100644
|
||||
--- a/dlls/wined3d/wined3d_main.c
|
||||
+++ b/dlls/wined3d/wined3d_main.c
|
||||
@@ -140,6 +140,7 @@ static BOOL wined3d_dll_init(HINSTANCE hInstDLL)
|
||||
HKEY appkey = 0;
|
||||
DWORD len, tmpvalue;
|
||||
WNDCLASSA wc;
|
||||
+ const char *env;
|
||||
|
||||
wined3d_context_tls_idx = TlsAlloc();
|
||||
if (wined3d_context_tls_idx == TLS_OUT_OF_INDEXES)
|
||||
@@ -309,6 +310,9 @@ static BOOL wined3d_dll_init(HINSTANCE hInstDLL)
|
||||
if (appkey) RegCloseKey( appkey );
|
||||
if (hkey) RegCloseKey( hkey );
|
||||
|
||||
+ if ((env = getenv("WINE_STRICT_DRAW_ORDERING")))
|
||||
+ wined3d_settings.strict_draw_ordering = atoi(env);
|
||||
+
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
--
|
||||
1.7.9.5
|
||||
|
@ -0,0 +1,4 @@
|
||||
Revision: 1
|
||||
Author: Sebastian Lackner
|
||||
Title: Allow to set wined3d strictDrawOrdering via environment variable.
|
||||
|
@ -33,7 +33,7 @@ diff --git a/libs/wine/config.c b/libs/wine/config.c
|
||||
index a273502..5fa0cd5 100644
|
||||
--- a/libs/wine/config.c
|
||||
+++ b/libs/wine/config.c
|
||||
@@ -478,6 +478,30 @@ const char *wine_get_version(void)
|
||||
@@ -478,6 +478,31 @@ const char *wine_get_version(void)
|
||||
return PACKAGE_VERSION;
|
||||
}
|
||||
|
||||
@ -51,6 +51,7 @@ index a273502..5fa0cd5 100644
|
||||
+ { "cbe240e8-2c58-430a-b61c-7fbb9d0e1e11:1", "Sebastian Lackner", "Change return value of stub SetNamedPipeHandleState to TRUE." },
|
||||
+ { "00273da7-72f8-4025-9e96-0c2bc95dacdb:2", "Maarten Lankhorst", "Winepulse patches extracted from https://launchpad.net/~mlankhorst/+archive/ppa/+files/wine1.7_1.7.10-0ubuntu1~saucy1.debian.tar.gz." },
|
||||
+ { "0b21d7ac-0387-4493-aa38-fbafe3e749f5:1", "Michael Müller", "Decrease minimum SetTimer interval from 15 to 5 ms." },
|
||||
+ { "19835498-8d90-4673-867e-2376af4d7c76:1", "Sebastian Lackner", "Allow to set wined3d strictDrawOrdering via environment variable." },
|
||||
+ { "eec5dea8-879d-417b-9f97-364deaae6576:1", "Sebastian Lackner", "Add tests for IVMRMonitorConfig." },
|
||||
+ { NULL, NULL, NULL }
|
||||
+};
|
||||
|
Loading…
Reference in New Issue
Block a user