https://bugs.winehq.org/show_bug.cgi?id=48632
Bug ID: 48632
Summary: Far Cry 2 has poor performance after changing
Anti-Aliasing level
Product: Wine
Version: 5.2
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Start a new game with AA 16x and after a while downgrade to 8x, 4x or 2x
err:d3d:wined3d_debug_callback 0xe33d20: "GL_INVALID_FRAMEBUFFER_OPERATION
error generated. Operation is not valid because a bound framebuffer is not
framebuffer complete.".
fixme:d3d:wined3d_context_gl_check_fbo_status FBO status
GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT (0x8cd6).
fixme:d3d:context_dump_fbo_attachment GL_DEPTH_ATTACHMENT: 2d-ms texture
39, 0x0, 16 samples, format 0x88f0.
fixme:d3d:context_dump_fbo_attachment GL_STENCIL_ATTACHMENT: 2d-ms texture
39, 0x0, 16 samples, format 0x88f0.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT0: 2d-ms texture
40, 0x0, 16 samples, format 0x8c43.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT1: NONE.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT2: NONE.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT3: NONE.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT4: NONE.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT5: NONE.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT6: NONE.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT7: NONE.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48622
Bug ID: 48622
Summary: Origin crashes when exiting application with Esync
enabled
Product: Wine-staging
Version: 5.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sashok.olen(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 66470
--> https://bugs.winehq.org/attachment.cgi?id=66470
origin backtrace
How to reproduce:
1) Install EA Origin client
2) Run it with Esync and get greted with a Login screen
3) Through (virtual) task menu icon, exit the application by right clicking
"Quit Origin"
4) Experience a crash in Origin.exe
This only happens if you're no logged in and only if you're running it with
Esync enabled.
Attaching a backtrace ( a log with
+server,+esync,+fsync,+sync,+seh,+timestamp,+pid debug channels will come in
the next message)
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=30827
Bug #: 30827
Summary: Uninitialized memory reference in
create_icon_pixmaps() -> GetDIBits() ->
bitmapinfoheader_from_user_bitmapinfo()
Product: Wine
Version: 1.5.5
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
While looking at bug 30826, I saw
Conditional jump or move depends on uninitialised value(s)
at bitmapinfoheader_from_user_bitmapinfo (dib.c:177)
by GetDIBits (dib.c:1210)
by create_icon_pixmaps.isra.8 (window.c:883)
create_icon_pixmaps calls GetDIBits with bits=NULL and a mostly uninitialized
info, but bitmapinfoheader_from_user_bitmapinfo() assumes that biCompression
has already been initialized.
gdi32/dib.c:
149 static BOOL bitmapinfoheader_from_user_bitmapinfo( BITMAPINFOHEADER
*dst, const BITMAPINFOHEADER *info )
150 {
...
166 else if (info->biSize >= sizeof(BITMAPINFOHEADER)) /* assume
BITMAPINFOHEADER */
167 {
168 *dst = *info;
169 }
...
176 dst->biSize = sizeof(*dst);
177 if (dst->biCompression == BI_RGB || dst->biCompression ==
BI_BITFIELDS)
178 dst->biSizeImage = get_dib_image_size( (BITMAPINFO *)dst );
1187 INT WINAPI GetDIBits(
1188 HDC hdc, /* [in] Handle to device context */
1189 HBITMAP hbitmap, /* [in] Handle to bitmap */
1190 UINT startscan, /* [in] First scan line to set in dest bitmap */
1191 UINT lines, /* [in] Number of scan lines to copy */
1192 LPVOID bits, /* [out] Address of array for bitmap bits */
1193 BITMAPINFO * info, /* [in,out] Address of structure with bitmap
data */
1194 UINT coloruse) /* [in] RGB or palette index */
1195 {
...
1208 /* Since info may be a BITMAPCOREINFO or any of the larger
BITMAPINFO structures, we'll use our
1209 own copy and transfer the colour info back at the end */
1210 if (!bitmapinfoheader_from_user_bitmapinfo( &dst_info->bmiHeader,
&info->bmiHeader )) return 0;
....
1212 if (bits &&
1213 (dst_info->bmiHeader.biCompression == BI_JPEG ||
dst_info->bmiHeader.biCompression == BI_PNG))
winex11.drv/window.c:
868 static BOOL create_icon_pixmaps( HDC hdc, const ICONINFO *icon, struct
x11drv_win_data *data )
869 {
870 char buffer[FIELD_OFFSET( BITMAPINFO, bmiColors[256] )];
871 BITMAPINFO *info = (BITMAPINFO *)buffer;
...
881 info->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
882 info->bmiHeader.biBitCount = 0;
883 if (!(lines = GetDIBits( hdc, icon->hbmColor, 0, 0, NULL, info,
DIB_RGB_COLORS ))) goto failed;
Note that GetDIBits is careful to avoid referencing biCompression itself
when bits is NULL, but the function it calls doesn't know whether bits is NULL.
(bug 30266 is nearby but doesn't seem related?)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48628
Bug ID: 48628
Summary: valgrind shows dependency on uninitialized memory in
riched20/editor.c
Product: Wine
Version: 5.0-rc6
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: richedit
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
==152101== Conditional jump or move depends on uninitialised value(s)
==152101== at 0x403EE7A: bcmp (vg_replace_strmem.c:1113)
==152101== by 0x41837DEE: MSVCRT_memcmp (string.c:2235)
==152101== by 0x7AC534C0: ME_ApplyStyle (style.c:215)
==152101== by 0x7AC27E09: ME_RTFCharAttrHook (editor.c:539)
==152101== by 0x7AC3EE4C: ControlClass (reader.c:2363)
==152101== by 0x7AC3D06C: RTFRouteToken (reader.c:343)
==152101== by 0x7AC3CF85: RTFRead (reader.c:311)
==152101== by 0x7AC2ACA2: ME_StreamIn (editor.c:1688)
==152101== by 0x7AC2F719: ME_HandleMessage (editor.c:3629)
==152101== by 0x7AC336E1: RichEditWndProc_common (editor.c:5062)
==152101== by 0x7AC337AE: RichEditWndProcW (editor.c:5082)
==152101== by 0x4127588F: ??? (winproc.c:175)
==152101== Uninitialised value was created by a stack allocation
==152101== at 0x7AC27992: ME_RTFCharAttrHook (editor.c:418)
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=35937
Bug ID: 35937
Summary: The file crashed upon loading the program.
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: carlino.designs(a)gmail.com
Created attachment 47995
--> http://bugs.winehq.org/attachment.cgi?id=47995
Error log file for eDCAA.exe
The file crashed upon loading the program.
The file can be downloaded at:
http://brightemo.co.uk/download/eDCAA.exe
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27570
Summary: Aliens Vs Predator 2 Demo is temporary confined
ingame.
Product: Wine
Version: 1.3.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.millington(a)gmail.com
I've tried the marine demo at the start the mouse movement is confined like bug
#6971 until you right click or over time, it works as per usual after this plus
"Automatically capture the mouse input in full-screen window" changes nothing.
Make fmv videos not accessible to speed up testing.
I haven't tested when you start the next level due to being a demo.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=43804
Bug ID: 43804
Summary: [Steam] Alien Swarm Reactive Drop: GPU hang after a
minute or two
Product: Wine
Version: 2.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maraku(a)gmx.com
Distribution: ---
Created attachment 59338
--> https://bugs.winehq.org/attachment.cgi?id=59338
dmesg/kernel log cut to the GPU hang lines
After starting running Alien Swarm Reactive Drop through Steam, the GPU errors
and hangs (i don't know how else to describe this behavior). The X-display
becomes unresponsive, and the only way to "fix" this is to switch to another
virtual terminal and end the alien swarm wine process.
I've attached a dmesg/kernel log. Wine itself does not crash (other than for
the web helper, which I do not believe is related to this crash), so I'm not
sure how to get a stack trace.
I'm running the 4.13.4 kernel, but this happened with the 4.13.2 kernel as
well.
The game used to run fine, but I believe the September 15th update caused this
behavior. Let me know if I should attach any other logs. I could not find any
errors in the Xorg.0.log either.
This is on a 7th gen i7-7500U with the intel 620 graphics. No kernel bootflags
(in the bootloader command line) enabled.
Thanks,
Manu
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=35998
Bug ID: 35998
Summary: American Conquest: Divided Nation refuses to start.
(Black Screen followed by crash).
Product: Wine
Version: 1.7.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mjkolar(a)charter.net
I'm trying to play American Conquest: Divided Nations, but when I load it up, I
get a flash of black screen followed by a CTD. The console output is as
follows:
bash-4.2$ wine DMCR.exe
err:winediag:xrandr12_init_modes Broken NVIDIA RandR detected, falling back to
RandR 1.0. Please consider using the Nouveau driver instead.
fixme:win:EnumDisplayDevicesW ((null),0,0x33f5f8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33f828,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),1,0x33f828,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33f6a8,0x00000000), stub!
err:winediag:xrandr12_init_modes Broken NVIDIA RandR detected, falling back to
RandR 1.0. Please consider using the Nouveau driver instead.
err:mmio:MMIO_ParseExtA No extension in szFileName: "Sound\\new\\dr+flute2.wav"
fixme:win:EnumDisplayDevicesW ((null),0,0x33f458,0x00000000), stub!
fixme:d3d_surface:d3dfmt_p8_init_palette No palette set.
Note that I installed this game according to the instructions listed on the
following appdb page:
https://appdb.winehq.org/objectManager.php?sClass=version&iId=24902 , including
the winecfg changes, the external patch, deleting the video directory, and
setting ddraw to native for this app.
I have also installed the original American Conquest demo, and I can confirm it
works with wine 1.7.12, but not wine 1.7.16, so I am presuming there is a
regression between these two releases. The American Conquest: Divided Nation
full version does not run with either release, and shows the same error
messages for both wine releases. Note also I have used a nocd to get around
Divided Nations Starforce (III?) protection. The demo does not have said
protection, so not relevant in that case.
System:
Slackware 14.1 x86_64 with alien multilib pack.
Xorg 1.15.0
NVIDIA Proprietary Blob 334.21 /w Geforce GTX 285m
Pulseaudio 5.0
Wine 1.7.12
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48627
Bug ID: 48627
Summary: Xara Designer Pro 15 and Xara PhotoGraphic 12 error
while exporting/importing bitmaps
Product: Wine
Version: 5.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: capellan2000(a)gmail.com
Distribution: ---
Created attachment 66476
--> https://bugs.winehq.org/attachment.cgi?id=66476
Error Logs for Xara Design Pro 15 and Xara Photo Designer 12
Xara Designer Pro 15 and Xara Photo Graphic 12
produces an error while exporting/importing bitmaps.
Probably both programs could not write temporal files
necessary for these operations.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47691
Bug ID: 47691
Summary: Wine 4.14 DX11 demul07_111117 Resident Evil 2 Pal
Product: Wine
Version: 4.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: seganfl2k(a)gmail.com
Distribution: ---
Created attachment 65154
--> https://bugs.winehq.org/attachment.cgi?id=65154
Misssing Shaders
Wine 4.14 DX11 demul07_111117 Resident Evil 2 Pal
just some missing shader ect
here is the video to show you below
https://youtu.be/b6-3LNo1nWA
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.