<div dir="ltr"><div dir="auto">Applying that patch does indeed get winemac.drv functional.<br><br>While it now works I get the following issue</div><div dir="auto"><br></div><div><img src="cid:ii_kxvagaic0" alt="Screen Shot 2021-12-31 at 4.35.51 PM.png" width="411" height="472"><br></div><div>As can be seen the UI is off and interaction with the rendered items is off.</div></div><div><div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Dec 31, 2021 at 12:44 AM Brendan Shanks <<a href="mailto:bshanks@codeweavers.com" target="_blank">bshanks@codeweavers.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><br>
> On Dec 28, 2021, at 8:22 AM, Dean Greer <<a href="mailto:gcenx83@gmail.com" target="_blank">gcenx83@gmail.com</a>> wrote:<br>
> <br>
> Tested this on an actual 10.9 install (10.8 is harder to get setup) and still the same issue nothing gets displayed other than the bar as shown in one of the prior emails.<br>
<br>
I built and ran Wine on 10.13, and I get the same result. The regression commit is "winemac.drv: Remove now unused -[WineContentView drawRect:].”, 3f845b34deada0dd58e3674119af47ce85851c24.<br>
<br>
The problem seems to be that WineContentView updateLayer isn’t being called for some reason. What’s weird is, if I add back an empty implementation of drawRect: like this, it does work.<br>
<br>
diff --git a/dlls/winemac.drv/cocoa_window.m b/dlls/winemac.drv/cocoa_window.m<br>
index d0672b7fb06..1ee582e6b59 100644<br>
--- a/dlls/winemac.drv/cocoa_window.m<br>
+++ b/dlls/winemac.drv/cocoa_window.m<br>
@@ -477,6 +477,10 @@ - (BOOL) isFlipped<br>
         return YES;<br>
     }<br>
<br>
+    - (void) drawRect:(NSRect)rect<br>
+    {<br>
+    }<br>
+<br>
     - (BOOL) wantsUpdateLayer<br>
     {<br>
         return YES /*!_everHadGLContext*/;<br>
<br>
<br>
Dean, does this change make a difference for you on 10.9?<br>
<br>
And Chip, any idea why this would make a difference or if this is the right thing to do? drawRect: isn’t even being called, it’s existence alone seems to make things work.<br>
<br>
(Note that this is on a 2010 MacBook which is about as old a machine as 10.13 supported. In particular, it has a GeForce 320M which doesn’t support Metal, but I don’t think this should make a difference. I’ll test out a 10.13 machine with Metal to be sure.)<br>
<br>
Brendan</blockquote></div></div>
</div>