https://bugs.winehq.org/show_bug.cgi?id=57984
Bug ID: 57984
Summary: Gunner, HEAT, PC! hangs before starting an actual
gameplay
Product: vkd3d
Version: 1.15
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: vkd3d
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
0bbc:fixme:d3d:wined3d_shader_resource_view_vk_generate_mipmap Ignoring view
format WINED3DFMT_R8_UNORM.
VUID-vkCmdBlitImage-filter-02001(ERROR / SPEC): msgNum: 328973095 - Validation
Error: [ VUID-vkCmdBlitImage-filter-02001 ] Object 0: handle = 0x7f208c47e780,
type = VK_OBJECT_TYPE_COMMAND_BUFFER; Object 1: handle = 0xef7b000000ef7b, type
= VK_OBJECT_TYPE_IMAGE; | MessageID = 0x139bbb27 | vkCmdBlitImage(): srcImage
(VkImage 0xef7b000000ef7b[]) was created with format VK_FORMAT_R8_SINT and
tiling VK_IMAGE_TILING_OPTIMAL which have VkFormatFeatureFlags2
(VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_BIT|VK_FORMAT_FEATURE_2_STORAGE_IMAGE_BIT|VK_FORMAT_FEATURE_2_COLOR_ATTACHMENT_BIT|VK_FORMAT_FEATURE_2_BLIT_SRC_BIT|VK_FORMAT_FEATURE_2_BLIT_DST_BIT|VK_FORMAT_FEATURE_2_TRANSFER_SRC_BIT|VK_FORMAT_FEATURE_2_TRANSFER_DST_BIT|VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_MINMAX_BIT|VK_FORMAT_FEATURE_2_STORAGE_READ_WITHOUT_FORMAT_BIT|VK_FORMAT_FEATURE_2_STORAGE_WRITE_WITHOUT_FORMAT_BIT|VK_FORMAT_FEATURE_2_HOST_IMAGE_TRANSFER_BIT)
which in turn is missing the required feature
VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_LINEAR_BIT.
The Vulkan spec states: If filter is VK_FILTER_LINEAR, then the format features
of srcImage must contain VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT
(https://docs.vulkan.org/spec/latest/chapters/copies.html#VUID-vkCmdBlitImag…)
Objects: 2
[0] 0x7f208c47e780, type: 6, name: NULL
[1] 0xef7b000000ef7b, type: 10, name: NULL
VUID-vkCmdCopyBufferToImage-dstImage-parameter(ERROR / SPEC): msgNum: 271201052
- Validation Error: [ VUID-vkCmdCopyBufferToImage-dstImage-parameter ] Object
0: handle = 0x7d7d27fc4080, type = VK_OBJECT_TYPE_INSTANCE; | MessageID =
0x102a331c | vkCmdCopyBufferToImage(): dstImage Invalid VkImage Object 0x0.
The Vulkan spec states: dstImage must be a valid VkImage handle
(https://docs.vulkan.org/spec/latest/chapters/copies.html#VUID-vkCmdCopyBuff…)
Objects: 1
[0] 0x7d7d27fc4080, type: 1, name: NULL
0bbc:err:d3d:wined3d_context_vk_allocate_vram_chunk_memory Failed to allocate
memory, vr VK_ERROR_OUT_OF_DEVICE_MEMORY.
0bbc:err:d3d:wined3d_context_vk_create_image Failed to allocate image memory.
0bbc:err:d3d:wined3d_view_vk_create_vk_image_view Failed to prepare texture.
VUID-VkImageViewCreateInfo-image-parameter(ERROR / SPEC): msgNum: 315335852 -
Validation Error: [ VUID-VkImageViewCreateInfo-image-parameter ] Object 0:
handle = 0x7d7d27fc4080, type = VK_OBJECT_TYPE_INSTANCE; | MessageID =
0x12cba4ac | vkCreateImageView(): pCreateInfo->image Invalid VkImage Object
0x0.
The Vulkan spec states: image must be a valid VkImage handle
(https://docs.vulkan.org/spec/latest/chapters/resources.html#VUID-VkImageVie…)
Objects: 1
[0] 0x7d7d27fc4080, type: 1, name: NULL
0bbc:err:msvcrt:_wassert (L"!status &&
\"vkCreateImageView\"",L"../wine/dlls/winevulkan/loader_thunks.c",3216)
1.15-179-g21e08955
--
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=57981
Bug ID: 57981
Summary: 0758:err:virtual:virtual_setup_exception nested
exception on signal stack in thread 0758 addr
0x3f0003f4af stack 0x7fedf170
Product: Wine
Version: 7.0.2
Hardware: aarch64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: liunixfinal(a)gmail.com
Distribution: ---
Created attachment 78234
--> https://bugs.winehq.org/attachment.cgi?id=78234
debugging logs generated after running the application under Wine
My program uses WaitForMultipleObjects to monitor multiple pipes. It runs
normally in a Windows environment, but under Wine, after running for some time,
WaitForMultipleObjects stops working. When data is written to the pipe, it does
not return, and simultaneously, the Wine debug log reports the following error:
0758:err:virtual:virtual_setup_exception nested exception on signal stack in
thread 0758 addr 0x3f0003f4af stack 0x7fedf170
After that, it continuously prints the following log:
04b8:err:sync:RtlpWaitForCriticalSection section 0308D388 "?" wait timed out in
thread 04b8, blocked by 048c, retrying (60 sec)
01f8:err:sync:RtlpWaitForCriticalSection section 0308D388 "?" wait timed out in
thread 01f8, blocked by 048c, retrying (60 sec)
and this is my code:
while (true)
{
DWORD dwWait = WaitForMultipleObjects(pPipeThread->chnNum + 1, // number
of event objects
pPipeThread->hEvents, // array of event objects
FALSE, // does not wait for all
INFINITE); // waits indefinitely
if (dwWait == WAIT_FAILED)
{
DWORD dwError = GetLastError();
char errorMsg[512];
FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
NULL, dwError, 0, errorMsg, sizeof(errorMsg), NULL);
cerror("CPipeWrapper WaitForMultipleObjects failed, Error Code: %u,
Error Message: %s", dwError, errorMsg);
}
int i = dwWait - WAIT_OBJECT_0; // determines which pipe
if (i < 0 || i > PIPE_NUM_PER_THREAD)
{
_dout("WaitForMultipleObjects threadidx(%d) chnNum(%d) Index out of
range(%d).", pPipeThread->threadIdx, pPipeThread->chnNum, i);
continue;
}
if (i == 0)
{
if (CPipeMgr::Instance()->IsQuit())
{
_dout("PipeReadThread quit threadidx(%d) chnNum(%d)",
pPipeThread->threadIdx, pPipeThread->chnNum);
return 0;
}
HandleChnCfgUpdate(pPipeThread);
_dout("PipeReadThread config update threadidx(%d) chnNum(%d)",
pPipeThread->threadIdx, pPipeThread->chnNum);
continue;
}
--i;
unsigned int chnID = pPipeThread->chnIDs[i];
CNamePipe* pPipe = CPipeMgr::Instance()->GetPipe(chnID);
int rdLen = pPipe->GetOverlapReadedNum();
int reminderLen = pPipe->GetReminderLen();
if (rdLen > 0)
{
reminderLen = CMemDataMgr::Instance()->DecodeDrvData(chnID,
pPipe->GetReadedBuf(), reminderLen + rdLen);
}
int readed = 0;
pPipe->ReadPipe(reminderLen, readed);
}
--
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=57977
Bug ID: 57977
Summary: Wine-Stable 10.0 SampleRate fixed at 48KHZ no higher
Values available
Product: Wine
Version: 10.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: Starfoxfs(a)gmx.net
Distribution: ---
I have tested a lot with Wine-Stable and Wine-Staging and cant get SampleRates
of Audio Programms higher than 48000HZ. Its always fixed at 48000HZ if i play
files with 44100HZ its also 48000HZ.
The Problem is in Winepulse.drv or Winealsa.drv i tested both.
In Pipewire.conf theres a Option to allow all the Samplerates but Wine didnt
use it.
--
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=56145
Bug ID: 56145
Summary: Wine lacks VR support ( OpenVR/OpenXR runtime shim)
Product: Wine
Version: 9.0-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: xeno(a)x-s.com.pl
Distribution: ---
Currently VR support in Linux gets to the point where it becomes viable option.
Linux native apps tend to do just fine , but there's no way for VR capable
windows apps running trough Wine to detect/use VR devices.
VR is supposed to be supported on Proton and hacky Wine-Proton hybrids, where
first option limits support to apps from Steam and second one is a bit
cumbersome to get it working.
To solve this issue wine environment could provide thin VR runtime environment
that catches calls from apps and direct those to linux native VR runtime that
is installed on user system. Wine OpenXR library shouldn't be that complex as
it'd be simple 1:1 mapping of OpenXR API. For Valve OpenVR API there are two
possible approaches, one similar to OpenXR where wine just forward calls to
SteamVR or it could translate calls to OpenXR, like OpenComposite does, then
call OpenXR runtime on Linux side.
--
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=56378
Bug ID: 56378
Summary: Microsoft Edge and Edge-based WebView2 do not function
without --no-sandbox option
Product: Wine
Version: 9.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: asdfghrbljzmkd(a)outlook.com
Distribution: ---
Microsoft Edge will freeze about 1-3 seconds after launching.
Steps to reproduce:
1. Download and install WebView2 (which includes Edge) from
https://developer.microsoft.com/en-us/microsoft-edge/webview2/
2. Run:
wine "/PATH/TO/PREFIX/drive_c/Program Files
(x86)/Microsoft/EdgeCore/VERSIONNUMBER/msedge.exe" --disable-gpu --no-first-run
Edge will not launch. If you add --no-sandbox to the launch options, it will
launch, but freeze after a second or so
(https://bugs.winehq.org/show_bug.cgi?id=56377)
--disable-gpu is required wine wined3d, it can be dropped if using DXVK.
--no-first-run disables the first run prompting you to sign in and such, it has
no bearing on this bug itself.
This also affects applications using WebView2, e.g. the Adobe Creative Cloud
setup application:
WEBVIEW2_ADDITIONAL_BROWSER_ARGUMENTS="--disable-gpu" wine
'/PATH/TO/Creative_Cloud_Set-Up.exe'
Using this at least allows the window to open, though it is blank for reasons
currently unknown:
WEBVIEW2_ADDITIONAL_BROWSER_ARGUMENTS="--disable-gpu --no-sandbox" wine
'/PATH/TO/Creative_Cloud_Set-Up.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=57972
Bug ID: 57972
Summary: Certain display modes (e.g. 1152x864) not available in
virtual desktop mode
Product: Wine
Version: 10.2
Hardware: x86-64
URL: https://archive.org/download/BloodRayne2Demo/BloodRayn
e2Demo.rar
OS: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: win32u
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: rbernon(a)codeweavers.com
Regression SHA1: 8f85c444596154c876c7aff3a2866407ea508974
Distribution: ArchLinux
In Bloodrayne 2 video options the display mode 1152x864 is available as a valid
mode, yet the game fails to start with the error "Can't find valid video mode
for 1152x864".
This happens in virtual desktop mode when the size of the VD is set to anything
but 1152x864.
In other games the display mode 1152x864 is now completely missing from their
video options.
This used to work before
commit 8f85c444596154c876c7aff3a2866407ea508974
win32u: Generate fake resolution list from the host modes.
OpenGL vendor string: NVIDIA Corporation
OpenGL renderer string: NVIDIA GeForce GTX 1660 SUPER/PCIe/SSE2
OpenGL core profile version string: 4.6.0 NVIDIA 570.124.04
wine-10.3-101-g245d3230271
--
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=57979
Bug ID: 57979
Summary: Windows Defender quarantines a virus when running
winetest
Product: Wine-Testbot
Version: unspecified
Hardware: aarch64
OS: Windows
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: robert.lippmann.development(a)gmail.com
Running winetest, I get the following message from Windows Defender:
Detected: Trojan:Win32/Wacatac.B!ml
Status: Quarantined
Affected items:
file: C:\Users\rlipp\AppData\Local\Temp\wctD5FE.tmp\imagehlp_test.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=57597
Bug ID: 57597
Summary: Rufus: Incorrect display of bitmap in buttons
Product: Wine
Version: 10.0-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: kyle.kcsoftwares(a)gmail.com
Distribution: ---
Created attachment 77711
--> https://bugs.winehq.org/attachment.cgi?id=77711
Wine
Rufus 2.18
See screenshot from Wine and Win11. Wine does not show button bitmap correctly
--
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=57976
Bug ID: 57976
Summary: office 365 trial edition for win64 or win32 fails in
wine
Product: Wine
Version: 10.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: elias_0000_0000(a)yahoo.com
Distribution: ---
CPU: 12-core AMD Ryzen 9 5900X (-MT MCP-) speed/min/max: 550/550/4951 MHz
Kernel: 6.12.17-amd64 x86_64 Up: 1h 18m Mem: 4.37/31.27 GiB (14.0%)
Storage: 7.32 TiB (45.9% used) Procs: 485 Shell: Bash inxi: 3.3.37
wine --version
wine-10.3
trying to install the free trial of office 365, fails.
I have downloaded O365HomePremRetail.img
which unziped.
It has three setups setup.exe in main directory, and then inside setup64 and
setup32.
I tried with both architechs in wine prefix but all failed.
I created a freshly one. it failed. is it supported?
last relevant lines of full debug
0184:fixme:netprofm:connection_point_Advise 00007FFFFF5E67C0, 00007FFFFF542C20,
00007FFFFF542D30 - semi-stub
0184:fixme:netprofm:connection_point_Advise 00007FFFFF5E67F8, 00007FFFFF542C20,
00007FFFFF542D2C - semi-stub
0184:fixme:netprofm:connection_point_Advise 00007FFFFF5E6750, 00007FFFFF542C20,
00007FFFFF542D34 - semi-stub
0160:fixme:file:NtLockFile I/O completion on lock not implemented yet
0160:fixme:combase:RoGetActivationFactory
(L"Windows.Security.Authentication.OnlineId.OnlineIdSystemAuthenticator",
{85047792-f634-41e3-96a4-5164e902c740}, 00007FFFFE1FF220): semi-stub
0160:fixme:combase:RoGetActivationFactory
(L"Windows.Security.Authentication.OnlineId.OnlineIdServiceTicketRequest",
{bebb0a08-9e73-4077-9614-08614c0bc245}, 00007FFFFE1FF238): semi-stub
0160:fixme:onlineid:ticket_request_factory_statics_CreateOnlineIdServiceTicketRequest
iface 00006FFFF8F34098, service
L"https://events.data.microsoft.com/OneCollector/1.0/", policy
L"NFS_1wk_compact_SSL", request 00007FFFFE1FF240 stub!
0160:fixme:reg:NtQueryLicenseValue License key
L"Microsoft-Windows-Container-License-Mode" not found
wine: Unhandled page fault on execute access to 0000000075E93A90 at address
0000000075E93A90 (thread 0160), starting debugger...
--
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=54697
Bug ID: 54697
Summary: Gaming.Input is not working with RAW controller API
Product: Wine
Version: 8.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: windows.gaming.input
Assignee: wine-bugs(a)winehq.org
Reporter: winrazor(a)gmail.com
Distribution: ---
Hello, I'm trying to run .Net Framework 7.0 application with Gamin.Input Raw
device API on Ubuntu Linux and have the following error:
fixme:input:controller_QueryInterface {43c0c035-bb73-4756-a787-3ed6bea617bd}
not implemented, returning E_NOINTERFACE
Connected device is detected but it cannot read info from device.
Tried with 2 different controllers: Trustmaster Dual Trigger and Xbox Series S
by cable, and have the same problem.
Wine 8.3 Staging is configured for Windows 11. In Windows 11 application works.
Do you have an idea?
Thanks is advance.
Timur.
--
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.