http://bugs.winehq.org/show_bug.cgi?id=9768
Summary: Performance Regression in 3Dmark03
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: greg87(a)online.de
In current wine there is a loss of about 1500points.
Looking at the detailed results, most tests are on the same speed. Except
Trolls Lair and Battle for Proxycon. And in the additional tests the Ragtroll
bench.
Caused by:
commit ad3fe8562b1b4e71b18d0c69a77caad8189c3d28
Author: Stefan Dösinger <stefan(a)codeweavers.com>
Date: Fri Sep 14 12:00:46 2007 +0200
wined3d: Enable the stencil test if two sided stencil is used.
I verified the correctness of the regression test by reverting it in the source
code.
Im running on nvidia drivers 100.14.19 and a Geforce 8600GT
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9732
Summary: Flash Player 8/9 ActiveX Control: animations flicker
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-multimedia
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: emiller(a)imvu.com
CC: emiller(a)imvu.com
When running Flash Player as an ActiveX control inside another program,
flickering appears as regions are redrawn. This behavior appears in at least
two programs:
* Internet Explorer 6 (through the ies4linux project)
* IMVU (http://appdb.winehq.org/appview.php?iVersionId=3927&iTestingId=2551)
I know that ies4linux is unsupported by the WINE team, but since identical
behavior appears in another executable that embeds Flash, I think it's a
problem with WINE.
I am using the current GIT version of WINE (wine-0.9.45-g8d1a859).
Things I have discovered:
* The Flash plugin for Firefox works fine
* Using the latest nvidia and nv drivers does nothing to improve the situation
** Hardware: 01:00.0 VGA compatible controller: nVidia Corporation NV44 [Quadro
NVS 285] (rev a1)
** Nvidia driver: 100.14.19
* I have tried multiple versions of the Flash ActiveX control, including:
** Flash9e.ocx (prerelease, see
http://labs.adobe.com/downloads/flashplayer9.html)
** Flash9c.ocx
** Flash8d.ocx
* The Flash 8 control flickers in a different but equally unacceptable way
To reproduce the problem in IE, download the Flash ActiveX control from Adobe
and then go to a site with Flash (e.g. www.youtube.com). To reproduce the
problem in IMVU, check Settings -> Use Text Chat and then click "My Room". The
text chat box is a flash widget and flickers quite noticeably.
You can obtain different versions of the ActiveX control from Adobe here:
http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14266
Please let me know if I can provide more information.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9626
Summary: unhandled msi action L"SetBBInstallEXE"
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dan(a)danny.cz
I am trying to install 3ds max 5 and can't get after the installation wizard's
page for selection destination folders. I get the following error when pressing
the "Next" button.
fixme:msi:ACTION_PerformAction unhandled msi action L"SetBBInstallEXE"
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9538
Summary: java: Component#getLocationOnScreen returning incorrect
coords
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: smckay(a)google.com
CC: dank(a)kegel.com
Here's a short java program that behaves correctly on linux and windows, but
not under wine. The program exercises a small part of the java awt toolkit.
1. Create a file with the following contents:
import java.awt.Component;
import java.awt.Container;
import java.awt.Frame;
import java.awt.Point;
public class Bug {
public static void main(String[] args) {
Frame f = new Frame();
Container cont = new Container();
Component comp = new Component(){};
f.add(cont);
cont.add(comp);
f.setSize(100, 100);
f.setVisible(true);
cont.setBounds(10, 10, 80, 80);
comp.setBounds(10, 10, 60, 60);
Point frameLoc = f.getLocationOnScreen();
Point compLoc = comp.getLocationOnScreen();
// The component now should have
// (frameLoc.x + 20 + i.left, frameLoc.y + 20 + i.top).
System.out.printf("a.x=%d, a.y=%d / b.x=%d, b.y=%d\n",
compLoc.x, compLoc.y, frameLoc.x, frameLoc.y);
f.dispose();
}
}
2. Compile it:
javac Bug.java
3. Download a JDK from java.sun.com and install it in Wine
4. Use it to run Bug.class, e.g.
cd '.wine/drive_c/Program Files/Java/jre1.6.0_01'
cp ~/Bug.class .
wine bin/java.exe Bug
5. Returns inconsistent results under wine. Under linux and windows it
consistently returns "a.x=20, a.y=20 / b.x=0, b.y=0". Occasionally wine returns
correct results, but repeated invocations of the application should produce
inconsistent results (e.g. "a.x=16, a.y=-3 / b.x=-4, b.y=-23").
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9386
Summary: WoW 2.2 fails to initialise audio
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehq-bugzilla(a)six-by-nine.com.au
As requested by Vitamin, I've now built Wine from GIT and set audio to
OSS/Emulated. WoW 2.2 continues to appear to hang on startup. If one waits long
enough one receives a crash that looks mightily similar to random crashes seen
under Vista.
I've attached a WINEDEBUG=+dsound trace, along with the crash report eventually
generated by WoW itself.
I set VERSION here to CVS, as I presume that's suitable for git - no one in
#winehq could confirm whether I should do this or not.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9290
Summary: SimCity 3000 Unlimited crashes whe cursor points to menu
item
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zms90(a)comcast.net
Created an attachment (id=7557)
--> (http://bugs.winehq.org/attachment.cgi?id=7557)
Wine console output running SC3U
When I run SimCity 3000 Unlimited, It gets to the main menu, and then I point
to an icon and wine gives me a c0000005 (Access Violation) in GZResourceD.dll.
I trimmed the excessive fixme:d3d:IWineD3DDeviceImpl_CreateSurface Trying to
create a render target that isn't in the default pool FIXME's to save space,
but otherwise it's the full output
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9350
Summary: Cannot change country in iTunes 6.0 due to
unimpletmented 'TrackPopupMenuEx' function
Product: Wine
Version: 0.9.43.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: r.swanwick(a)gmail.com
When using iTunes 6.0 the country for the online store cannot be changed
because of an unimplemented function
clicking the change country icon displays a menu containing countrys but
selecting one goes straight back to US site with fixme
cmdline:
fixme:menu:TrackPopupMenuEx not fully implemented
Thanks
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9833
Summary: No sound with alsa driver
Product: Wine
Version: 0.9.46.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-multimedia
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: v_viper35(a)hotmail.com
Created an attachment (id=8293)
--> (http://bugs.winehq.org/attachment.cgi?id=8293)
emerge --info
Alsa sound does not work from me since first time i tried wine, on my Gentoo
system, while oss driver (with aoss) works fine. My main wave out device is
CK804 and alsa is compiled as module. When a program is trying to use alsa, i
get this from console and there is no sound at all:
ALSA lib conf.c:3939:(snd_config_expand) Unknown parameters 0
ALSA lib control.c:910:(snd_ctl_open_noupdate) Invalid CTL default:0
ALSA lib conf.c:3939:(snd_config_expand) Unknown parameters 0
ALSA lib pcm.c:2145:(snd_pcm_open_noupdate) Unknown PCM default:0
ALSA lib conf.c:3939:(snd_config_expand) Unknown parameters 0
ALSA lib pcm.c:2145:(snd_pcm_open_noupdate) Unknown PCM default:0
ALSA lib conf.c:3939:(snd_config_expand) Unknown parameters 1
ALSA lib control.c:910:(snd_ctl_open_noupdate) Invalid CTL default:1
ALSA lib conf.c:3939:(snd_config_expand) Unknown parameters 1
ALSA lib pcm.c:2145:(snd_pcm_open_noupdate) Unknown PCM default:1
ALSA lib conf.c:3939:(snd_config_expand) Unknown parameters 1
ALSA lib pcm.c:2145:(snd_pcm_open_noupdate) Unknown PCM default:1
~$ lscpi | grep audio:
00:04.0 Multimedia audio controller: nVidia Corporation CK804 AC'97 Audio
Controller (rev a2)
01:06.1 Multimedia controller: Brooktree Corporation Bt878 Audio Capture (rev
02)
01:07.0 Multimedia audio controller: Creative Labs SB Live! EMU10k1 (rev 0a)
I have attached the info from my system. If something else is required please
say so.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9542
Summary: Need for speed 4 (High Stakes) just shows black screen
Product: Wine
Version: 0.9.44.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adam(a)piggz.co.uk
Created an attachment (id=7914)
--> (http://bugs.winehq.org/attachment.cgi?id=7914)
Log of console output
When i run need for speed high stakes, the menu sound works ok, but the screen
is black.
Im running 0.9.44, on an i915 laptop with mesa 7.0.1.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9847
Summary: Enemy Territory Quake Wars freezes on level loading
Product: Wine
Version: 0.9.46.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-files
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: d1m1(a)gmx.ch
Created an attachment (id=8318)
--> (http://bugs.winehq.org/attachment.cgi?id=8318)
Output wine etqw.exe
I installed ET:QW Full Version using the instructions for the open beta client.
I installed patch 1.1.
I start a game vs the Computer (Bots) with default settings on Area 22 (but
High Graphics Detail).
The game is loading, but suddenly the music stops, the loading screen is
frozen, no cpu usage.
The game itself says: Spawning entities: 100%
(Log attached)
I can load other maps successfully, but then they freeze short after I join the
game:
I had that problem on the ET:QW Open beta client too (freeze at loading) - the
line I remember is:
*** glibc detected *** double free or corruption (fasttop): 0x601d9eb0 ***
Could that be an error in ET:QW that doesn't appear on every system(, but more
likely on wine/linux-systems (because it isn't tested on such systems),)? I
don't know anyone else who encounters this problem. (See appdb)
My operating system is Debian Etch x86
I choose component wine-files (guess), because the crash seems to appear "near"
some file operations.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.