https://bugs.winehq.org/show_bug.cgi?id=54943
Bug ID: 54943
Summary: The gdipdrawstring function uses the wrong width when
rendering CJK fonts
Product: Wine
Version: 8.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: 399989567(a)qq.com
Distribution: ---
1. First create a LOGFONT, and make lfwidth=0, and use the font Tahoma
2. Use Font "font(hdc, &lf)" to create the font
3. Use " graphics.DrawString(string, -1, &font, { 1.0f,1.0f,0,0 }, &format,
&brush);" to render the string
where
WCHAR string[] = L "这里有一些错误".
You will find the Chinese font is too narrow.If you fail to render, make sure
your lfCharSet=134
ps:Don't say there is no Chinese in tahoma so there is a rendering problem, it
has nothing to do with this bug
I researched the bug and found that it is related to the implementation of
gdipdrawstring. The function finally calls GDI32_GdipDrawDriverString, which
uses SelectObject to select the font and ExtTextOutW to output the font.
So the problem can be well abstracted out, the reason for the problem is in the
last selectobject lf.lfwidth=7 (instead of the 0 you set at the beginning)
ps:7 is the result of my computer's calculation
So we can write a simple demo to reproduce this problem:
1.lf.lfWidth = 0;
2.hUnderline = CreateFontIndirectA(&lf);
3.SelectObject(hdc, hUnderline);
4.ExtTextOutW(hdc, x, y, 0, NULL, string, lstrlenW(string), NULL);
5.lf.lfWidth = 7;
6.hUnderline = CreateFontIndirectA(&lf);
7.SelectObject(hdc, hUnderline);
8.ExtTextOutW(hdc, x, y, 0, NULL, string, lstrlenW(string), NULL);
You can find that the strings in 4 are drawn at the correct width, while the
strings in 8 are too narrow; I don't know how to fix this bug, as it also
affects the calculation of the string width
I hope I can get an answer
--
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=40409
Bug ID: 40409
Summary: builtin gdiplus causes K-Shoot Mania to lag in some
menus, native gdiplus causes missing textures
Product: Wine
Version: 1.9.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: lena.stoffler(a)ymail.com
Distribution: ---
Created attachment 54144
--> https://bugs.winehq.org/attachment.cgi?id=54144
log, native gdiplus
K-Shoot Mania AppDB ->
https://appdb.winehq.org/objectManager.php?sClass=application&iId=17474
I did a lot of research to get this game to run normally. I have some
interessting results. Maybe this is fixable?
I'm sure the problem sits in the GDIPlus DLL
Short summary:
builtin: some menus lags really hard (very low framerate, 2~3 + input lag),
all textures are visible
native: normal framerate in all menus, but some missing textures (plain white
spot where the textures should be)
builtin (Wine)
~~~~~~~~~~~~~~
Probably the reason for the heavy lag? Only using builtin gdiplus.
fixme:wincodecs:JpegDecoder_Frame_CopyPalette (0x...,0x...): stub
fixme:gdiplus:GdipCreateBitmapFromGdiDib (0x2002a60, 0x6b10000, 0x6578c8) -
partially implemented
Basically a stub and a partially implemented function. Maybe the game requires
a better GdipCreateBitmapFromGdiDib implementation or the
JpegDecoder_Frame_CopyPalette function. I don't know.
NOTE: The JpegDecoder_Frame_CopyPalette fixme doesn't appear with the native
gdiplus.
native (Windows) - winetricks gdiplus
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
No lag there, but now some textures are missing. Instead of the texture which
should be there, there is only a plain white spot. The 'generated' texture
files are empty files (0 byte).
You can verify this by youself easily: the cache folder is in the game folder.
($GAME/cache)
This is the fixme which is spammed in the terminal when using the native
gdiplus, installed using winetricks.
fixme:bitmap:SetBitmapBits Unhandled partial pixel
The other 2 fixmes from the builtin version are completely gone.
The 2 logs are attached separately for better readability.
--
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=25355
Summary: Time clock SBE 1.2 and 2.2 not working properly on
ubuntu 10.04LTS
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ryanmore2006(a)yahoo.com.ph
Our company used Ubuntu 8.04 install in all computer in all branches. were
using Time clock SBE 1.2 for time logging for all our employees. the said
software were stable in ubuntu 8.04 LTS wine wine version 1.0.
The problem starts when we updated the LINUX OS to Ubuntu 10.04LTS with wine
1.2 install, but something wrong with the some menu can't be seen anymore, we
tried to update the time clock sbe form 1.2 to 2.2 but the unfortunately it did
not fixed the problem. we also updated the version of wine but still the same.
for reference i will attached the screen shot for ubuntu 8.04 and 10.04
Im homping that someone can help me with this problem.
--
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=54890
Bug ID: 54890
Summary: Ultimate Doom Builder will crash if some dialoge boxes
are used
Product: Wine
Version: 8.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: beneschork(a)gmail.com
Distribution: ---
Created attachment 74388
--> https://bugs.winehq.org/attachment.cgi?id=74388
Crash log
Whenever I use Ultimate doom Builder, I will often need to change a Thing* ID
or a texture. To do this, I have to click on the linedef or thing to open its
dialog box. There are fields I use to enter a string for the texture name or
and integer for the TID, and whenever I do, wine immediately throws up an error
and I have to save the crash log. This bug is replaceable on my machine, I have
even changed distros.
--
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=27294
Summary: livezilla can't start, complains of missing Verdana
font
Product: Wine
Version: 1.3.20
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
A user complained that Livezilla wouldn't start, see
http://forum.winehq.org/viewtopic.php?t=12202
I was able to reproduce this, plus a possible font-related gdiplus bug:
cd $HOME
rm -rf ~/.wine
sh winetricks corefonts dotnet20
wget http://www.livezilla.net/downloads/pubfiles/LiveZilla_3.3.2.2_Full.exe
wine LiveZilla_3.3.2.2_Full.exe
cd ~/".wine/drive_c/Program Files/LiveZilla"
wine LiveZilla
That gets the error
Your system misses the font Microsoft Sans Serif
Copying micross.ttf from a Windows system into ~/.wine/drive_c/windows/Fonts
gets past that. (Dunno if that needs to be added to winetricks,
or if one of the existing fonts in 'allfonts' should satisfy it.)
The next problem is
Your system misses the font Tahoma
Doing
winetricks tahoma gdiplus
gets past that. (Don't know why gdiplus was needed, that's interesting.)
The next problem is the user's error,
Your system misses the font 'Verdana Regular'
Which is funny, because Verdana Regular is already in windows/Fonts,
and WINEDEBUG=+font shows
trace:font:AddFontToList Loading font file
"/home/dank/.wine/dosdevices/c:/windows/Fonts/Verdana.TTF" index 0
trace:font:get_familyname Got localised name L"Verdana"
trace:font:AddFontToList fsCsb = 2000019f 00000000/00000287 00000000 00000000
00000000
trace:font:AddFontToList Added font L"Verdana" L"Regular"
...
trace:font:AddFontToList Loading font file
"/usr/share/fonts/truetype/msttcorefonts/Verdana.ttf" index 0
trace:font:get_familyname Got localised name L"Verdana"
trace:font:AddFontToList Already loaded font L"Verdana" L"Regular" original
version is 10000, this version is 10000
trace:font:AddFontToList Original font is newer so skipping this one
Oddly, at some point, wine forgets about the Regular variant:
trace:font:DumpFontList Family: L"Verdana"
000d:Ret advapi32.RegGetValueW() retval=0000trace:font:DumpFontList L"Bold"
2000019f
000d:Call advapi32.RegGetValueW(0000004c,000trace:font:DumpFontList L"Bold
Italic" 2000019f
Perhaps one of the fonts in /usr/share/fonts is interfering...
--
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=43736
Bug ID: 43736
Summary: PathGradientBrush results in a white shape
Product: Wine
Version: 2.17
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: norike(a)gmail.com
Distribution: ---
Created attachment 59217
--> https://bugs.winehq.org/attachment.cgi?id=59217
test project with screenshots
We develop a charting library and found some gradients are drawn as solid white
shapes in Wine for Ubuntu. Reducing the issue to the minimum we found the
problem seems to be when drawing a rectangle with a PathGradientBrush.
See the screenshots in the attachment.
- Windows.png is the result of running the .exe in a Windows 10.
- Ubuntu.png is the result of running the .exe in Ubuntu 16.04 using Wine. We
got the same result in Wine 1.6 (?), 2.0.2 and 2.17.
The attachment also contains the .exe and the project sources (made with Visual
Studio 2017).
--
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=33410
Bug #: 33410
Summary: QQ International 1.6 displays its window abnormally
with a black line across
Product: Wine
Version: 1.5.28
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fangendoucg(a)gmail.com
Classification: Unclassified
Created attachment 44204
--> http://bugs.winehq.org/attachment.cgi?id=44204
screenshot
Hi folks,
While I install QQ International QQIntl1.61.exe, its first window shows with a
threadlet across.See the attachment.
Well, winetricks gdiplus can workaround it.
It's free to download.
$ sha1sum QQIntl1.61.exe
6cd9042f591a7b140e3216df2851c9b7a436be34 QQIntl1.61.exe
--
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.
http://bugs.winehq.org/show_bug.cgi?id=24653
Summary: Builtin GdiPlus doesn't draw lines equally to native
GdiPlus
Product: Wine
Version: 1.3.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: boreno(a)gmail.com
Created an attachment (id=31163)
--> (http://bugs.winehq.org/attachment.cgi?id=31163)
Sourcecode that draws GdiPlus pixel-perfection tests. Image that shows tests
drawn using native and builtin GdiPlus.
Lines are off by 1 pixel at either start or end position depending on drawing
operation. Image and source code attached. Marked with severity major since it
ruins pixel-perfection for UI components developed to rely on GdiPlus. In other
words, it looks too ugly to be released to customers.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=32266
Bug #: 32266
Summary: Songr Portable 2.0 fails to start
Product: Wine
Version: 1.5.17
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
Classification: Unclassified
Created attachment 42579
--> http://bugs.winehq.org/attachment.cgi?id=42579
Error log
Songr Portable 2.0 fails to start with current version of Wine, I guess is a
problem with Wine-mono since Songr requires .Net 3.5 to work.
--
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=51449
Bug ID: 51449
Summary: Final Fantasy XIV: Endwalker Benchmark does not launch
Product: Wine
Version: 6.12
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: yaomtc(a)protonmail.com
Distribution: ---
Created attachment 70299
--> https://bugs.winehq.org/attachment.cgi?id=70299
This is the terminal output from attempting to start the benchmark.
The benchmark for FFXIV 6.0 does not launch.
--
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=47158
Bug ID: 47158
Summary: FantaMorph 5 is very slow
Product: Wine
Version: 4.7
Hardware: x86
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
The program works fine, bzt it's very slow. I didn't work much with it, but the
loading takes multiple seconds.
"winetricks gdiplus" makes it a lot faster.
--
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=55717
Bug ID: 55717
Summary: mono's IsOutlineVisible_Line_WithGraphics test fails
Product: Wine
Version: 8.17
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: madewokherd(a)gmail.com
Distribution: ---
The
MonoTests.System.Drawing.Drawing2D.GraphicsPathTest.IsOutlineVisible_Line_WithGraphics
test stopped working in Wine. To test, download the Wine Mono tests and run:
$ run-tests.exe
MonoTests.System.Drawing.Drawing2D.GraphicsPathTest.IsOutlineVisible_Line_WithGraphics
This is a regression caused by 0c777a7d5cab90ab59d7a4a6b60c516efa7a9830.
--
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=55989
Bug ID: 55989
Summary: Wine Mono needs to support winmd files (YUR fails to
launch)
Product: Wine
Version: 8.21
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: mscoree
Assignee: wine-bugs(a)winehq.org
Reporter: madewokherd(a)gmail.com
Distribution: ---
From https://github.com/ValveSoftware/Proton/issues/7308 (YUR).
The program ships a Windows.winmd file and links to it as a regular .NET
assembly. Wine Mono doesn't find it because it's not looking for a .winmd
extension, but renaming to .dll isn't good enough (though technically it is a
CLR image and does load). We need specific support for winmd assemblies.
--
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=56045
Bug ID: 56045
Summary: RichTextBox crashes the WPF application
Product: Wine
Version: 9.0-rc2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: claytmp+foj0w(a)gmail.com
Distribution: ---
Created attachment 75700
--> https://bugs.winehq.org/attachment.cgi?id=75700
Terminal output and WPF app included
When adding RichTextBox component into the Window Form, the app won't run at
all. It appears that the app crashes if it tries to render the RichTextBox.
Without the RichTextBox, the app would work
--
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=56217
Bug ID: 56217
Summary: Paint Shop Pro 9.01, minor hang when a selection in a
picture is moved
Product: Wine
Version: 9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: kle(a)bluewin.ch
Distribution: ---
Hi all
Here follows my second issue report about Paint Shop Pro 9 under Wine 9.x.
It works almost perfectly fine. One regression regarding a hang on exit was
already reported, see bug 56182 for more information.
After some time of testing I found another minor flaw which is most likely
gdiplus.dll related. The screen-output freezes for a short time after a
selected area (in a picture) is moved around for more than two or three pixels.
This is true for both, the built-in and the native gdiplus.dll. It affects only
the drawing of the picture and not the mouse cursor. However, while the bug is
present on both gdiplus variants, there exist still a difference when it
occurs. (That's the reason why I think it is related to gdiplus.)
A gdiplus.dll override to native is also needed for the first startup.
Otherwise it is not possible to close the "Learning center" dialog box. When
that is done the override can be reverted. Note, Paint Shop Pro 9 already
contains an own (quite old) native "gdiplus.dll" file.
It can be said that the built-in gdiplus works apart from that flaw somehow
smoother than the included native version.
The program can be downloaded from here:
https://www.tenforums.com/software-apps/191499-paint-shop-pro-4-12-7-04-8-1…
Note, it can be installed via the "Jasc Paint Shop Pro 9.msi" and "Jasc
Animation Shop 3.msi" files without any registration and also without any
serial.
--
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=37050
Bug ID: 37050
Summary: Wine and FreeSCAN.exe fails to load
Product: Wine
Version: 1.6.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: loader
Assignee: wine-bugs(a)winehq.org
Reporter: hd625b(a)gmail.com
Used Lunix Mint17 Terminal and Wine to run FreeSCAN.exe which threw the errors
below. FreeSCAN.exe is from SixSpot Software.
hd625b@MyLunixMint17 ~ $ wine "/home/hd625b/.wine/drive_c/Program
Files/FreeSCAN/FreeSCAN.exe"
Unhandled Exception:
System.TypeLoadException: Could not load type 'FreeSCAN.lblSiteNote' from
assembly 'FreeSCAN, Version=0.8.3.0, Culture=neutral, PublicKeyToken=null'.
at FreeSCAN.My.MyProject+MyForms.get_lblSiteNote () [0x00000] in <filename
unknown>:0
at FreeSCAN.My.MyApplication.OnCreateMainForm () [0x00000] in <filename
unknown>:0
at
Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnRun ()
[0x00000] in <filename unknown>:0
at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run
(System.String[] commandLine) [0x00000] in <filename unknown>:0
at FreeSCAN.My.MyApplication.Main (System.String[] Args) [0x00000] in
<filename unknown>:0
[ERROR] FATAL UNHANDLED EXCEPTION: System.TypeLoadException: Could not load
type 'FreeSCAN.lblSiteNote' from assembly 'FreeSCAN, Version=0.8.3.0,
Culture=neutral, PublicKeyToken=null'.
at FreeSCAN.My.MyProject+MyForms.get_lblSiteNote () [0x00000] in <filename
unknown>:0
at FreeSCAN.My.MyApplication.OnCreateMainForm () [0x00000] in <filename
unknown>:0
at
Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnRun ()
[0x00000] in <filename unknown>:0
at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run
(System.String[] commandLine) [0x00000] in <filename unknown>:0
at FreeSCAN.My.MyApplication.Main (System.String[] Args) [0x00000] in
<filename unknown>:0
hd625b@MyLunixMint17 ~ $
--
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=56266
Bug ID: 56266
Summary: EA Desktop does not install
Product: Wine
Version: 8.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: helix.graziani(a)hotmail.com
Distribution: ---
Created attachment 75981
--> https://bugs.winehq.org/attachment.cgi?id=75981
Application Log
Running wine-8.18-1766-gc963c4141a0.
OS: Ubuntu 22.04.3 LTS x86_64 (Kernel 5.15.0-91-generic).
To reproduce:
- Download the installer:
https://origin-a.akamaihd.net/EA-Desktop-Client-Download/installer-releases…
- Run it
- Click "Let's go"
- Wait
- It should say an error occurred
$ sha1sum EAappInstaller.exe
491248bd5fce30bac23a174f779be01a4542765c EAappInstaller.exe
Attached is the application log.
--
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=46058
Bug ID: 46058
Summary: iPed 7G 2019 (.NET 4.0 app) v13.0.10800 crashes with
System.NotImplementedException at
System.drawing.Graphics.CheckErrorStatus
Product: Wine
Version: 3.19
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: johntam(a)pedfast.com
Distribution: ---
Created attachment 62644
--> https://bugs.winehq.org/attachment.cgi?id=62644
Screen shot of exception.
Exception occurs when previewing MegaPed pedigree -- if a database is needed
to duplicate the issue please email me.
If one continues after the exception, the pedigree does not render to the
preview window.
Reports all also render as blank. Something else is unimplemented that is not
throwing an exception.
--
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=53947
Bug ID: 53947
Summary: Daily Chthonicle is extremely slow and laggy
Product: Wine
Version: 7.20
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Especially notable when you run it without winecfg's "virtual desktop" on a 4k
screen.
winetricks "gdiplus" works around the issue.
--
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=56049
Bug ID: 56049
Summary: Wine >= 9.0-rc1: 32+64 bit build with -march=znver1
broken (libtiff, regression, gcc-12.2.0, Debian-12)
Product: Wine
Version: 9.0-rc2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: windowscodecs
Assignee: wine-bugs(a)winehq.org
Reporter: kolAflash(a)kolahilft.de
Distribution: ---
Compiling a combined 32+64 bit Wine with -march=znver1 is broken since at least
Wine-9.0-rc1.
Tested on Debian-12 (gcc-12.2.0). There seems to be a problem with libtiff.
I'm using the following commands to build Wine since years. They worked fine
with Wine <= 8.21.
(Wine source has been extracted to wine-*)
Please tell me if you think this is not a Wine regression, but a GCC bug. Then
I'll report it at GCC.
export PREFIX="${HOME}"/wine-build
export CFLAGS='-march=znver1'
mkdir 64; cd 64
../wine-*/configure CROSSCFLAGS="${CFLAGS}" --enable-win64 --prefix="${PREFIX}"
--disable-tests
make -j16
mkdir ../32; cd ../32
PKG_CONFIG_PATH="${PREFIX}"/lib/pkgconfig:/usr/lib/pkgconfig:/usr/lib/i386-linux-gnu/pkgconfig
../wine-*/configure CROSSCFLAGS="${CFLAGS}" --with-wine64=../64
--prefix="${PREFIX}" --libdir="${PREFIX}"/lib --disable-tests
make -j16 install
cd ../64; make install
Since Wine >= 9.0-rc1 I'm getting the following error in the final "cd ../64;
make install" command when using "-march=znver1".
i686-w64-mingw32-gcc -c -o dlls/windowscodecs/i386-windows/dlldata.o
dlls/windowscodecs/dlldata.c -Idlls/windowscodecs \
-I../wine-9.0-rc1/dlls/windowscodecs -Iinclude -I../wine-9.0-rc1/include \
-I../wine-9.0-rc1/include/msvcrt -I../wine-9.0-rc1/libs/tiff/libtiff
-I../wine-9.0-rc1/libs/jpeg \
-I../wine-9.0-rc1/libs/png -D_UCRT -D__WINESRC__ -DENTRY_PREFIX=WIC_
-DPROXY_DELEGATION \
-DWINE_REGISTER_DLL -D__WINE_PE_BUILD -Wall -fno-strict-aliasing
-Wdeclaration-after-statement \
-Wempty-body -Wignored-qualifiers -Winit-self -Wno-packed-not-aligned
-Wshift-overflow=2 \
-Wstrict-prototypes -Wtype-limits -Wunused-but-set-parameter -Wvla
-Wwrite-strings -Wpointer-arith \
-Wlogical-op -Wabsolute-value -fno-omit-frame-pointer
-mpreferred-stack-boundary=2 -march=znver1
i686-w64-mingw32-gcc -c -o libs/tiff/i386-windows/libtiff/tif_aux.o
../wine-9.0-rc1/libs/tiff/libtiff/tif_aux.c -Ilibs/tiff \
-I../wine-9.0-rc1/libs/tiff -Iinclude -I../wine-9.0-rc1/include
-I../wine-9.0-rc1/include/msvcrt \
-I../wine-9.0-rc1/libs/tiff/libtiff -I../wine-9.0-rc1/libs/jpeg
-I../wine-9.0-rc1/libs/zlib \
-D_UCRT -DFAR= -DZ_SOLO -D__WINE_PE_BUILD -fno-strict-aliasing
-Wno-packed-not-aligned \
-fno-omit-frame-pointer -mpreferred-stack-boundary=2 -march=znver1
during RTL pass: split1
../wine-9.0-rc1/libs/tiff/libtiff/tif_aux.c: In function ‘_TIFFUInt64ToFloat’:
../wine-9.0-rc1/libs/tiff/libtiff/tif_aux.c:415:1: internal compiler error: in
assign_stack_local_1, at function.cc:429
415 | }
| ^
0x7feffaa461c9 __libc_start_call_main
../sysdeps/nptl/libc_start_call_main.h:58
0x7feffaa46284 __libc_start_main_impl
../csu/libc-start.c:360
Please submit a full bug report, with preprocessed source (by using
-freport-bug).
Please include the complete backtrace with any bug report.
See <https://gcc.gnu.org/bugs/> for instructions.
make: *** [Makefile:224677: libs/tiff/i386-windows/libtiff/tif_aux.o] Error 1
--
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=45840
Bug ID: 45840
Summary: i don't know =D
Product: Wine
Version: 3.0.2
Hardware: Other
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: vkvinderi(a)gmail.com
Distribution: ---
Created attachment 62312
--> https://bugs.winehq.org/attachment.cgi?id=62312
Open source programm, i leave link upper or be low, inside the message
It is a opensource programm
https://github.com/Jessecar96/SteamDesktopAuthenticator
It almost works, but i still have problem when i need confirm something.
Crashing when i push the button iside body of this programm, button called like
"View Confirmations"
Also, you probably can repeat the error, if you setup any steamcommunity.com
account, and press this button.
Sorry if i make a mistakes, when i'm send you this 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.
https://bugs.winehq.org/show_bug.cgi?id=38932
Bug ID: 38932
Summary: Betfair Betting Assistant throws a warning while
loading
Product: Wine
Version: 1.7.47
Hardware: x86
URL: https://www.gruss1-software.co.uk/Betting_Assistant/Be
tting_Assistant.msi
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: mscoree
Assignee: wine-bugs(a)winehq.org
Reporter: imwellcushtymelike(a)gmail.com
Distribution: Ubuntu
Created attachment 51866
--> https://bugs.winehq.org/attachment.cgi?id=51866
wine-1.7.47-84-g2294d3b screenshot
After a successful installation, Betfair Betting Assistant throws a warning
while loading, and then doesn't load the log-in dialog as it should.
The workaround is dotnet20.
--
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=56571
Bug ID: 56571
Summary: osu! quits with InvalidCastException when using
wine-mono
Product: Wine
Version: 9.6
Hardware: x86-64
URL: https://m1.ppy.sh/r/osu!install.exe
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mscoree
Assignee: wine-bugs(a)winehq.org
Reporter: aidas957(a)gmail.com
Distribution: ArchLinux
Created attachment 76324
--> https://bugs.winehq.org/attachment.cgi?id=76324
Snippet of Wine Mono log with the cast exception
Hello,
So osu!(stable) quits after the osu! logo (with InvalidCastException being
shown in the terminal when using the WINE_MONO_TRACE=frog variable) when
running the game with wine-mono installed (instead of .NET)
Installing .NET with the dotnet45 winetricks verb allows the game to run again
(like with bug 50111)
I think this bug may be a continuation of
https://bugs.winehq.org/show_bug.cgi?id=50111 (because I see
marshalling-related functions before the exception gets thrown in the Mono log)
I'll attach a snippet of the relay-level Wine Mono log that has the exception
stuff (the full log is likely too big even after compression)
I tried editing the RuntimeAssembly class to public in dnSpy for the Wine Mono
mscorlib.dll (but I got an EXCEPTION_ILLEGAL_INSTRUCTION exception instead with
no obvious explanation for that in the Wine Mono log which of course prevented
the game from starting)
--
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=27447
Summary: HAL7600 doesn't start
System.InvalidOperationException:
WinForms_SeeInnerException
Product: Wine
Version: 1.3.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mscoree
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
Unhandled Exception: System.InvalidOperationException:
WinForms_SeeInnerException ---> System.Reflection.TargetInvocationException:
Exception has been thrown by the target of an invocation. --->
System.ComponentModel.Win32Exception: No valid icon entry were found.
at System.Drawing.Icon.InitFromStreamWithSize (System.IO.Stream stream, Int32
width, Int32 height) [0x00000] in <filename unknown>:0
at System.Drawing.Icon..ctor (System.Runtime.Serialization.SerializationInfo
info, StreamingContext context) [0x00000] in <filename unknown>:0
at (wrapper managed-to-native) System.Reflection.MonoCMethod:InternalInvoke
(System.Reflection.MonoCMethod,object,object[],System.Exception&)
at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags
invokeAttr, System.Reflection.Binder binder, System.Object[] parameters,
System.Globalization.CultureInfo culture) [0x00000] in <filename unknown>:0
--- End of inner exception stack trace ---
at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags
invokeAttr, System.Reflection.Binder binder, System.Object[] parameters,
System.Globalization.CultureInfo culture) [0x00000] in <filename unknown>:0
at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[]
parameters) [0x00000] in <filename unknown>:0
...
at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run
(System.String[] commandLine) [0x00000] in <filename unknown>:0
at HAL7600.My.MyApplication.Main (System.String[] Args) [0x00000] in
<filename unknown>:0
http://forums.mydigitallife.info/threads/23966-UNSUPPORTED-HAL7600-Permanen…
mono210 required. Check url for direct download link
--
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=56484
Bug ID: 56484
Summary: LACiE Toolkit: Error message on startup: mscorlib: The
method or operation is not implemented.
Product: Wine
Version: 8.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: linards.liepins(a)gmail.com
Distribution: ---
Created attachment 76255
--> https://bugs.winehq.org/attachment.cgi?id=76255
Screnshot
After closing the window, app works as expected.
--
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=56590
Bug ID: 56590
Summary: Buffer Overflow in jpeg_decoder_initialize
Product: Wine
Version: 9.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: windowscodecs
Assignee: wine-bugs(a)winehq.org
Reporter: franco(a)blackwinghq.com
Distribution: ---
The vulnerable jpeg_decoder_initialize function in file libjpeg.c
(https://github.com/wine-mirror/wine/blob/master/dlls/windowscodecs/libjpeg.…)
is used to decompress jpegs and create a raw bitmap version of the image.
In jpeg_decoder_initialize, the values for cinfo.output_width and
cinfo.output_height are retrieved directly from a jpeg file's header.
cinfo.output_width and cinfo.output_height can be manipulated by editing the
header of the jpeg file being processed. They are two bytes each in the image's
header so their values can range from 0x0000 to 0xFFFF. These variables are
multiplied with frame.bpp.
When these three values are multiplied together they can exceed the limit of a
32-bit unsigned integer, leading to an integer overflow vulnerability. This
product is used to set the size of the image_data buffer, which will store the
decompressed jpeg
(https://github.com/wine-mirror/wine/blob/master/dlls/windowscodecs/libjpeg.…).
When the sizing arguments overflow, the buffer becomes too small to store the
decompressed data.
The program writes the decompressed image to the buffer using the
jpeg_read_scanlines function. The function ends up writing to out-of-bounds
memory due to the buffer’s small size
(https://github.com/wine-mirror/wine/blob/master/dlls/windowscodecs/libjpeg.…).
This causes data in memory adjacent to the buffer to be overwritten.
An attacker is in control of the image's height, width, and contents. This
allows an attacker to craft an exploit to overwrite data in memory with data
they control.
--
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=56849
Bug ID: 56849
Summary: [Regression] Ableton Live 12 undo history broken
Product: Wine
Version: 9.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tileacids946(a)gmail.com
Distribution: ---
After updating to Wine 9.11, Ableton Live complains about not being able to
access the undo history file:
"Live cannot access the undo history file and is switching to a memory based
undo"
--
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=56908
Bug ID: 56908
Summary: ASCII Art Studio - hangs after clicking on New icon
Product: Wine
Version: 9.12
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kyle.kcsoftwares(a)gmail.com
Distribution: ---
Created attachment 76727
--> https://bugs.winehq.org/attachment.cgi?id=76727
ascii freeze
Download ASCII Art Studio from https://jira.reactos.org/browse/CORE-19654
Install
click on "new" icon in tool bar
Freezes and "top" shows 100% CPU used by this process.
--
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=21227
Summary: cmd doesn't echo redirection like native
Product: Wine
Version: 1.1.35
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P3
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Native cmd echoes commands after some canonicalization has been done
on their redirects. A batch file containing
dir 1> ok
dir > bad
dir | bad
dir > blah > bad
echoes as
dir 1> ok
dir 1> bad
dir | bad
dir 1> bad
(note the extra space inserted before the > or |).
Wine's cmd doesn't currently do this, but it could probably
do so without too much trouble; it already collects redirects
separately for each command.
For the moment I'll probably put a kludge in the cmd conformance
test runner to compensate.
--
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=54335
Bug ID: 54335
Summary: fp.exe has no mouse, resize does not work, escape
string don't work
Product: Wine
Version: 8.0-rc4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: margers.roked(a)inbox.lv
Distribution: ---
fp.exe download link
http://downloads.freepascal.org/fpc/dist/3.2.2/i386-win32/fpc-3.2.2.i386-wi…
Fail to start from shortcut/launcher.
Starting form terminal:
1) has no mouse support
2) not all escape strings work for example Alt+F does not open File menu
3) resize terminal window does not resize program window accordingly.
Starting from cmd has the same problems + after exit cmd is broken
--
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=56909
Bug ID: 56909
Summary: ExEn-V2 Generic Simulator - "Garbage" displayed on 1st
line
Product: Wine
Version: 9.12
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kyle.kcsoftwares(a)gmail.com
Distribution: ---
Created attachment 76728
--> https://bugs.winehq.org/attachment.cgi?id=76728
exen
ExEn-V2 Generic Simulator from https://alien256.narod.ru/EMULATOR.RAR
"Garbage" displayed on 1st line while it should display "Games Menu" in red
See : https://jira.reactos.org/browse/CORE-18836
--
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=24026
Summary: Tab completion for cmd
Product: Wine
Version: 1.3.0
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: cmd
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.millington(a)gmail.com
Pressing tab only creates a space but should complete a file name in the same
way that Windows does with their Command Prompt.
--
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=56907
Bug ID: 56907
Summary: wineconsole, FreePascal text mode IDE and horizontal,
vertical scrollbars
Product: Wine
Version: 9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: margers.roked(a)inbox.lv
Distribution: ---
Free Pascal text mode IDE when changing Video Mode sometimes horizontal,
vertical scrollbars appear while unnecessary.
Reproduce:
1. open fp.exe in wineconsole (scrollbars might appear while not needed)
2. Options -> Environment -> Preferences -> change: Video Mode (scrollbars
might appear while not needed)
3. File -> Command shell, "exit" (scrollbars might appear while not needed, or
disappear )
Free Pascal available at
https://sourceforge.net/projects/freepascal/files/Win32/3.2.2/
fpc-3.2.2.i386-win32.exe
after installation run fp.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.
https://bugs.winehq.org/show_bug.cgi?id=56778
Bug ID: 56778
Summary: Nextion Editor crash on startup
Product: Mono
Version: main
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mono
Assignee: wine-bugs(a)winehq.org
Reporter: wghralbwklqcocselg(a)cazlq.com
CC: madewokherd(a)gmail.com
Distribution: ---
Link to download: https://nextion.tech/download/nextion-setup-v1-65-1.exe
Wine log:
0170:fixme:ntdll:NtQuerySystemInformation info_class
SYSTEM_PERFORMANCE_INFORMATION
Failed to run module constructor due to (null)
assembly:C:\windows\mono\mono-2.0\lib
--
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=56903
Bug ID: 56903
Summary: wineconsole, FreePascal text mode IDE, 2nd screen
buffer
Product: Wine
Version: 9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: margers.roked(a)inbox.lv
Distribution: ---
Free Pascal IDE have its own screen and console screen.
Switch to console screen press Alt+F5 and back by pressing any key.
When running in wineconsole Free Pascal ide those two screens seems to
"overlap", but they should not.
Free Pascal available at
https://sourceforge.net/projects/freepascal/files/Win32/3.2.2/
fpc-3.2.2.i386-win32.exe
after installation run fp.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.
https://bugs.winehq.org/show_bug.cgi?id=56841
Bug ID: 56841
Summary: virtual desktop "explorer.exe
/desktop=shell,1920x1080" broken in 9.11 (regression
since 9.10)
Product: Wine
Version: 9.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kolAflash(a)kolahilft.de
Distribution: ---
Since wine-9.11 the virtual desktop doesn't work when started via "/desktop".
There's simply no X11 window coming up.
Example running winecfg:
explorer.exe /desktop=shell,1920x1080 winemine.exe
OS: Debian-12 Linux
wine-9.10 was working fine.
Bad commit (did a git bisect):
https://gitlab.winehq.org/wine/wine/-/commit/b89c9c60d50cf21650331d1528ff96…
--
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=53711
Bug ID: 53711
Summary: Final Fantasy XI Crashes
Product: Wine
Version: 7.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: pandora.xero(a)gmail.com
Distribution: ---
Created attachment 73136
--> https://bugs.winehq.org/attachment.cgi?id=73136
most recent backtrace, 20220920 122500 US Central.
I have multiple occurrences over the past several months (most of which I have
saved the backtraces for) of the game crashing.
Symptoms include:
Game crash on logout
Occasional Game crash on zone
Failure to load textures, or glitched textures loaded
I am unable to glean any information from the backtraces, primarily because I
am not familiar with x86 assembly, but I have had issues like these for a while
now. They mostly occur after switching between characters multiple times, or
zoning a large number of times, but the most recent one (attached) was totally
random as I was walking through a zone.
--
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=56899
Bug ID: 56899
Summary: reMarkable software (paper tablet) installs but does
not run
Product: Wine
Version: 9.12
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jochen.friedemann(a)gmail.com
Distribution: ---
Created attachment 76716
--> https://bugs.winehq.org/attachment.cgi?id=76716
Log after wine 9.12 crashes trying to run reMarkable
(reMarkable-3.12.1.873-win64) after successful installation
The last couple versions of the reMarkable software (paper tablet) would
install but not run (reMarkable version 3.10 & 3.12). Trying to run an older
version (3.7) that previously worked now also crashes. Please see log in
attachment...
--
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=56580
Bug ID: 56580
Summary: Xdefiant Beta pdh.dll.PdhGetFormattedCounterArrayA
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: pdh
Assignee: wine-bugs(a)winehq.org
Reporter: hippo1555(a)gmail.com
Distribution: ---
Launch game, after getting to main menu load any mode.
during loading land on:
wine: Call from 000000007B013AD7 to unimplemented function
--
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=56897
Bug ID: 56897
Summary: Overwatch 2 very low fps in vanilla wine
Product: Wine
Version: 9.12
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: h0tc0d3(a)gmail.com
Distribution: ---
To be honest, I don't quite remember how keyboard layouts affect game
performance. But the Overwatch 2 game without this set of patches
https://gitlab.winehq.org/wine/wine-staging/-/tree/master/patches/loader-Ke…
has an FPS of about 50 frames, while with this set of patches the FPS is more
than 300.
--
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=55949
Bug ID: 55949
Summary: PEB->PostProcessInitRoutine broken / unimplemented
Product: Wine
Version: 8.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: novae.harpist06(a)icloud.com
Distribution: ---
Created attachment 75533
--> https://bugs.winehq.org/attachment.cgi?id=75533
Reproducer
Reproducer attached.
Windows output:
Hello world!
Wine output:
(nothing)
--
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=55752
Bug ID: 55752
Summary: ntdll:wow64 - The 32-bit test_peb_teb() fails in
Wine's the new WoW mode
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
ntdll:wow64 - The 32-bit test_peb_teb() fails in Wine's the new WoW mode:
wow64.c:874: Test failed: wrong Tib.ExceptionList 7ffffe1ff530 / 7FFC2000
See https://test.winehq.org/data/patterns.html#ntdll:wow64
In particular one can see this issue on fg-deb64-i386, fgtb-debian11-i386,
fgtb-debian12-i386 and rbernon-*-wow64 which all run the 32-bit tests in the
new Windows-on-Windows Wine mode. This failure does no happen in the 64-bit
test, or when running in a pure 32-bit environment or in the old
Windows-on-Windows mode.
--
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=56831
Bug ID: 56831
Summary: Label disappears except if renderer=gdi
Product: Wine
Version: 9.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mterrisse(a)free.fr
Distribution: ---
Created attachment 76639
--> https://bugs.winehq.org/attachment.cgi?id=76639
Sample Delphi/FMX application
Hello,
Wine dev 9.10, Ubuntu 24.04
I wrote a sample application to illustrate the problem.
The application is written in Delphi/FMX, win64 and has just a form with a
label and a button that closes the form.
The problem is that the label disappears when the mouse hovers over the button.
But this doesn't happen if I specify
HKEY_CURRENT_USER\Software\Wine\Direct3D\renderer=gdi
I have the problem with renderer=gl or renderer=vulkan
I have tried to investigate: if I remove the call to InvalidateRect when
Repaint is called for the button, the problem disappears (but the aspect of the
button is wrong). The coordinates passed to InvalidateRect are the same under
Windows and under Ubuntu + Wine.
Thank you for your help.
Regards,
Michel Terrisse
--
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.