http://bugs.winehq.org/show_bug.cgi?id=7959
------- Additional Comments From mk144210(a)bcm.tmc.edu 2007-02-07 15:58 -------
Created an attachment (id=6982)
--> (http://bugs.winehq.org/attachment.cgi?id=6982&action=view)
Here is what I tested
Huw,
No prob for testing I was getting really sick of this bug. The changes in this
diff (which I am assuming is what you meant) applied onto a clean git tree
still work with no BadPixmaps. Let me know if you need anything else.
Misha
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7571
------- Additional Comments From inckie(a)gmail.com 2007-02-07 15:53 -------
Nevermind, I just got it fixed. IÂ’ll hammer this a little more and post to
wine-patches tomorrow.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7959
------- Additional Comments From huw(a)codeweavers.com 2007-02-07 15:51 -------
Hi Misha,
Thanks for testing this. I have one more thing I'd really like you to test.
Could you remove the XFlush() in X11DRV_XRender_UpdateDrawable (in xrender.c)
and keep the XSync() in destroy_whole_window as last time. Does that still work
for you?
Thanks again.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7959
------- Additional Comments From mk144210(a)bcm.tmc.edu 2007-02-07 15:45 -------
Created an attachment (id=6981)
--> (http://bugs.winehq.org/attachment.cgi?id=6981&action=view)
Minimal patch to fix
Huw,
Good work. That fixed it for me. In fact all that is needed is adding that
one line. Specifically, on a clean wine git tree I apply my user32 conformance
test patch to make it XFreePixmap error and then apply just this minimal patch
and XFreePixmap error is gone.
With this patch, I get the same behavior that I can only get in one of four
other ways:
1) Reverse applying the original patch that was rebase'd to be the broken one
2) Commenting out X_FreePixmap call for tile_xpm in UpdateDrawable
3) Commenting out UpdateDrawable call in SET_DRAWABLE in ExtEscape
4) WINEDEBUG=+synchronize (seems to avoid calling old_error_handler in
error_handler).
So I am pretty sure I am testing the underlying problem here (especially b/c of
pt's #1 & #2). Just to play it safe someone else should probably test it out
too on an actual app, but I'm pretty confident this will fix it.
As for the other patches, not sure if they're needed but that's your call Huw.
This fixes the XFreePixmap error by itself.
Thanks a lot!
Misha
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=8851
------- Additional Comments From rm.riches(a)verizon.net 2007-02-07 15:41 -------
Created an attachment (id=6980)
--> (http://bugs.winehq.org/attachment.cgi?id=6980&action=view)
gzipped output of attempt to install Wine Gecko, debug enabled
This is gzipped output from an attempt to install and use Wine Gecko in a
fresh, clean, new prefix area, with WINEDEBUG set to
+mshtml,+shdocvw,+urlmon,+htmlhelp
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7670
------- Additional Comments From romain.iehl(a)gmail.com 2007-02-07 15:36 -------
It is indeed a sound volume problem, I applied the following patch to
dlls/dsound/mixer.c :
--- mixer.c.orig 2007-07-02 22:29:13.000000000 +0200
+++ mixer.c 2007-07-02 22:29:26.000000000 +0200
@@ -315,6 +315,10 @@
BYTE *bpc = buf;
INT16 *bps = (INT16 *) buf;
+ if (dsb->volpan.dwTotalLeftAmpFactor == 0) {
+ dsb->volpan.dwTotalLeftAmpFactor = 15000;
+ }
+
TRACE("(%p,%p,%d)\n",dsb,buf,len);
TRACE("left = %x, right = %x\n", dsb->volpan.dwTotalLeftAmpFactor,
dsb->volpan.dwTotalRightAmpFactor);
and was able to hear battle sounds in the left earphone (among other normally
inaudible sounds). So, for some reason, battle sounds work but are played at 0
volume.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.