2024-08-26 14:53:21 -07:00
|
|
|
From 2d72a65d874538ec1032adaf42a28940e6b6a375 Mon Sep 17 00:00:00 2001
|
2021-07-01 20:11:39 -07:00
|
|
|
From: Ken Thomases <ken@codeweavers.com>
|
|
|
|
Date: Tue, 22 Jun 2021 07:56:43 +1000
|
|
|
|
Subject: [PATCH] winemac.drv: No Flicker patch
|
|
|
|
|
|
|
|
---
|
|
|
|
dlls/winemac.drv/macdrv.h | 1 +
|
|
|
|
dlls/winemac.drv/macdrv_main.c | 4 ++++
|
|
|
|
dlls/winemac.drv/opengl.c | 2 +-
|
|
|
|
3 files changed, 6 insertions(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/dlls/winemac.drv/macdrv.h b/dlls/winemac.drv/macdrv.h
|
2024-08-26 14:53:21 -07:00
|
|
|
index f9ada39d38a..89ffa0d5825 100644
|
2021-07-01 20:11:39 -07:00
|
|
|
--- a/dlls/winemac.drv/macdrv.h
|
|
|
|
+++ b/dlls/winemac.drv/macdrv.h
|
2024-08-22 17:07:19 -07:00
|
|
|
@@ -43,6 +43,7 @@
|
|
|
|
extern BOOL allow_vsync;
|
2023-11-29 16:35:48 -08:00
|
|
|
extern BOOL allow_set_gamma;
|
|
|
|
extern BOOL allow_software_rendering;
|
|
|
|
+extern BOOL force_backing_store;
|
2021-07-01 20:11:39 -07:00
|
|
|
|
2024-08-26 14:53:21 -07:00
|
|
|
extern UINT64 app_icon_callback;
|
|
|
|
extern UINT64 app_quit_request_callback;
|
2021-07-01 20:11:39 -07:00
|
|
|
diff --git a/dlls/winemac.drv/macdrv_main.c b/dlls/winemac.drv/macdrv_main.c
|
2024-08-26 14:53:21 -07:00
|
|
|
index ea556aef68d..e67f17f9f43 100644
|
2021-07-01 20:11:39 -07:00
|
|
|
--- a/dlls/winemac.drv/macdrv_main.c
|
|
|
|
+++ b/dlls/winemac.drv/macdrv_main.c
|
2024-08-22 17:07:19 -07:00
|
|
|
@@ -59,6 +59,7 @@ int use_precise_scrolling = TRUE;
|
2024-05-15 15:29:53 -07:00
|
|
|
int gl_surface_mode = GL_SURFACE_IN_FRONT_OPAQUE;
|
2021-07-01 20:11:39 -07:00
|
|
|
int retina_enabled = FALSE;
|
|
|
|
int enable_app_nap = FALSE;
|
|
|
|
+BOOL force_backing_store = FALSE;
|
|
|
|
|
2024-08-26 14:53:21 -07:00
|
|
|
UINT64 app_icon_callback = 0;
|
|
|
|
UINT64 app_quit_request_callback = 0;
|
|
|
|
@@ -379,6 +380,9 @@ static void setup_options(void)
|
2024-05-15 15:29:53 -07:00
|
|
|
if (!get_config_key(hkey, appkey, "EnableAppNap", buffer, sizeof(buffer)))
|
|
|
|
enable_app_nap = IS_OPTION_TRUE(buffer[0]);
|
2021-07-01 20:11:39 -07:00
|
|
|
|
|
|
|
+ if (!get_config_key(hkey, appkey, "ForceOpenGLBackingStore", buffer, sizeof(buffer)))
|
|
|
|
+ force_backing_store = IS_OPTION_TRUE(buffer[0]);
|
|
|
|
+
|
|
|
|
/* Don't use appkey. The DPI and monitor sizes should be consistent for all
|
|
|
|
processes in the prefix. */
|
|
|
|
if (!get_config_key(hkey, NULL, "RetinaMode", buffer, sizeof(buffer)))
|
|
|
|
diff --git a/dlls/winemac.drv/opengl.c b/dlls/winemac.drv/opengl.c
|
2024-08-22 17:07:19 -07:00
|
|
|
index ac87cfc1313..68de39f49cd 100644
|
2021-07-01 20:11:39 -07:00
|
|
|
--- a/dlls/winemac.drv/opengl.c
|
|
|
|
+++ b/dlls/winemac.drv/opengl.c
|
2023-11-29 16:35:48 -08:00
|
|
|
@@ -1451,7 +1451,7 @@ static BOOL create_context(struct wgl_context *context, CGLContextObj share, uns
|
2021-07-01 20:11:39 -07:00
|
|
|
attribs[n++] = pf->samples;
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (pf->backing_store)
|
|
|
|
+ if (force_backing_store || pf->backing_store)
|
|
|
|
attribs[n++] = kCGLPFABackingStore;
|
|
|
|
|
2021-11-18 16:07:35 -08:00
|
|
|
if (core)
|
2021-07-01 20:11:39 -07:00
|
|
|
--
|
2024-08-22 17:07:19 -07:00
|
|
|
2.45.2
|
2021-07-01 20:11:39 -07:00
|
|
|
|