https://bugs.winehq.org/show_bug.cgi?id=41163
Bug ID: 41163
Summary: Minimum memory for Nvidia GTX 1060 should be 3GB
Product: Wine
Version: 1.9.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: markk(a)clara.co.uk
Distribution: ---
In dlls/wined3d/directx.c a comment says
"The amount of video memory stored in the gpu description table is the minimum
amount of video memory "found on a board containing a specific GPU."
The line for Nvidia GTX 1060:
{HW_VENDOR_NVIDIA, CARD_NVIDIA_GEFORCE_GTX1060, "NVIDIA GeForce GTX
1060", DRIVER_NVIDIA_GEFORCE8, 6144},
6144 should probably be changed to 3072, since a 3GB version of the GTX 1060
(with slightly cut-down GPU) has been announced:
http://www.eurogamer.net/articles/digitalfoundry-2016-nvidia-unveils-cut-do…
Either that, or a separate entry for the 3GB model should be added.
Also, in dlls/wined3d/wined3d_private.h is the PCI ID for the GTX 1060:
CARD_NVIDIA_GEFORCE_GTX1060 = 0x1c03,
Nvidia uses 0x1C02 for the 3GB GTX 1060, according to the Windows driver INF
file:
NVIDIA_DEV.1C02.8438.19DA = "NVIDIA GeForce GTX 1060 3GB"
NVIDIA_DEV.1C03.9438.19DA = "NVIDIA GeForce GTX 1060 6GB"
--
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=50661
Bug ID: 50661
Summary: LibvirtTool: Automatically create Windows snapshots
with test signing turned on
Product: Wine-Testbot
Version: unspecified
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
Having test configurations with test signing turned on would be useful:
https://www.winehq.org/pipermail/wine-devel/2020-October/175882.html
There is now one such Windows 10 configuration, w1064_tsign, which was created
manually.
But to generalize this LibvirtTool should know how to turn on test signing
before creating live snapshots. Fortunately this seems pretty simple: just run
"bcdedit /set testsigning on" and reboot. So it should be possible to add that
in Revert().
--
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=44728
Bug ID: 44728
Summary: Bad windows version detection with python module
"platform"
Product: Wine
Version: 3.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gillg02(a)hotmail.com
Distribution: ---
If you use a python script (for exemple built-in into an installer) wich use
native module "platform" to detect OS platform and version, you could have a
bad version number regarding your wine config.
Here, an extract of native "platform.py" file (python 3.5), and the line wich
cause this issue + a test to patch it temporarly.
def win32_ver(release='', version='', csd='', ptype=''):
try:
from sys import getwindowsversion
except ImportError:
return release, version, csd, ptype
try:
from winreg import OpenKeyEx, QueryValueEx, CloseKey,
HKEY_LOCAL_MACHINE
except ImportError:
from _winreg import OpenKeyEx, QueryValueEx, CloseKey,
HKEY_LOCAL_MACHINE
winver = getwindowsversion()
maj, min, build = winver._platform_version or winver[:3]
########## Begin PATCH for WineHQ ############
maj, min, build = winver[:3]
########## End PATCH for WineHQ ############
version = '{0}.{1}.{2}'.format(maj, min, build)
release = (_WIN32_CLIENT_RELEASES.get((maj, min)) or
_WIN32_CLIENT_RELEASES.get((maj, None)) or
release)
For a win10 configured, see dumps below :
winver._platform_version => (5, 1, 2600)
winver[:3] => (10, 0, 15063)
I don't know exactly why, but somwhere in windows confs or dlls something is
wrong.
For information, getwindowsversion() seems to be a wrapper of Win function
GetVersionEx()
--
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=31387
Bug #: 31387
Summary: Helicopter's tail prop is sometimes partly black in
GTAIV
Product: Wine
Version: 1.5.9
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: b7.10110111(a)gmail.com
Classification: Unclassified
Created attachment 41247
--> http://bugs.winehq.org/attachment.cgi?id=41247
Screenshot
This bug is similar to bug 21197, but this particular thing wasn't fixed by the
commit which did fix that bug. See the screenshot. Symptoms are the same - one
of the propeller blades is black with black pixels around.
How to reproduce once in the game:
1. Find/spawn Police Maverick helicopter
2. Get inside it
3. Take off to be about 10 m above ground
4. Press 'S' and hold it so that helicopter punches the ground
5. See the artifact appear
--
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=41464
Bug ID: 41464
Summary: Quake live sound latency
Product: Wine
Version: 1.9.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dsound
Assignee: wine-bugs(a)winehq.org
Reporter: cosiekvfj(a)o2.pl
Distribution: ---
Hi. I measured sound latency(from fire button to gauntlet noise)(audacity) and
it's about >160ms. For that fast paced game it's to much. Even after tweaking
s_mixprestep and alsa buffer it's still to much.
Soundbackend Alsa
Linux GA-MA790X-DS4 4.6.7-1-MANJARO #1 SMP PREEMPT Tue Aug 16 19:20:55 UTC 2016
x86_64 GNU/Linux
--
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=25173
Summary: No sound in menus/game play in Call Of Duty : Black
Ops
Product: Wine
Version: 1.3.7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: oneofone(a)gmail.com
Created an attachment (id=31938)
--> (http://bugs.winehq.org/attachment.cgi?id=31938)
WINEDEBUG=+dsound
It's not http://bugs.winehq.org/show_bug.cgi?id=16942 as far as I can tell, I
tried everything.
Clean prefix, winver=windows7, disabled mmdevapi.
When I tried native dsound I lost the sound in the cut scenes.
--
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=49902
Bug ID: 49902
Summary: Garbled text in Rufus' tooltips
Product: Wine
Version: 5.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: oguilherme(a)protonmail.com
Distribution: ---
Created attachment 68260
--> https://bugs.winehq.org/attachment.cgi?id=68260
Comparison between Wine and Windows 10
Hi,
I noticed that upon hovering over any of Rufus' buttons, a tooltip containing
random garbled text (presumably uninitialized memory) is displayed every time.
I tested this on Wine 5.18 (Arch and Ubuntu) and Wine 5.0 (Ubuntu only) and it
is always reproducible.
Probably unrelated to this, but clicking on the "CLOSE" button doesn't do
anything.
exe: rufus-3.11p.exe
sha1: 26d30f2085c27a96a8c7e9a007da18d7624e4fea
url: https://github.com/pbatard/rufus/releases/download/v3.11/rufus-3.11p.exe
Thanks.
--
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=43706
Bug ID: 43706
Summary: Age of Mythology demo has graphics issues
Product: Wine
Version: 2.16
Hardware: x86-64
URL: http://www.nvidia.com/object/dl_aom.html
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 59173
--> https://bugs.winehq.org/attachment.cgi?id=59173
comparison
Launching with integrated HD 3000 shows graphics issues.
Works normally with Nvidia.
wine-2.16-162-g218286bb87
--
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=43906
Bug ID: 43906
Summary: GRID 2 (Demo) almost completely black
Product: Wine
Version: 2.18
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx11
Assignee: wine-bugs(a)winehq.org
Reporter: plata(a)mailbox.org
Distribution: ---
It seems like the lighting is not working correctly. The log spams:
fixme:d3d11:d3d11_immediate_context_RSSetViewports Multiple viewports not
implemented.
fixme:d3d:wined3d_device_copy_sub_resource_region Not implemented for
WINED3D_RTYPE_TEXTURE_3D resources.
--
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=44308
Bug ID: 44308
Summary: Flight Simulator 98 instrument panel glitches
Product: Wine
Version: 2.0.3
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: caiot5(a)gmail.com
Created attachment 60145
--> https://bugs.winehq.org/attachment.cgi?id=60145
ddraw errors
There is a glitch making it impossible to render the Instrument Panel textures,
as well making the game to be slow when looking at the panel.
The problem seems to affect FS 95/98/2004/X versions aswell.
--
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.