You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue was originally found during SDK 1.2.154.0 testing. It is being logged here for future fix.
Selected my noAMDImplicit Layer configuration that has the AMD implicit layer disabled (we know this implicit layer interferes with vulkaninfo output):
The vulkaninfo output still seems incomplete. Attached file here.
I have reproduced the issue, it is only happening when you launch vulkaninfo from vkconfig (by selecting the .exe manually and running it).
This happens when no overrides are enabled.
The issue doesn't occur when json or html is selected.
The issues is due to an unfortunate interaction with vulkaninfo and vkconfig, notably the fact that vulkaninfo tries to stay open indefinitely in the console, which vkconfig doesn't like.
Vulkaninfo Source code for reference:
if (ConsoleIsExclusive() && human_readable_output) Sleep(INFINITE);
Note this only occurs with text output (human_readable).
Remove that line, and vulkaninfo prints the full output to vkconfig.
The text was updated successfully, but these errors were encountered:
christophe-lunarg
changed the title
vkconfig: vulkaninfo as defined app staying open indefinitely does not interact well with vkconfig
vulkaninfo: as defined app staying open indefinitely does not interact well with vkconfig
Oct 2, 2020
That would be a very big breaking change. And vulkaninfo isn't a command line app, it is an executable that people can open from the file explorer. On macOS, opening the vulkaninfo bundle creates terminal that lives for ever, just like windows.
The way I see it, vulkaninfo is thinking its running in its own console, when in reality its being run in a virtual console that vkconfig created. If we can update the logic of vulkaninfo to make sure it better understand the environment its running in and/or alter vkconfig to let the running apps know its inside another application, then it could be possible to sidestep the issue entirely (as the Sleep(INFINITE) only happens when vulkaninfo is running in an 'exclusive console').
christophe-lunarg
changed the title
vulkaninfo: as defined app staying open indefinitely does not interact well with vkconfig
vulkaninfo: sleep(INFINITE) in vulkaninfo cause the tool to never complete when executed with vkconfig
Oct 2, 2020
This issue was originally found during SDK 1.2.154.0 testing. It is being logged here for future fix.
The vulkaninfo output still seems incomplete. Attached file here.
vulkaninfoSDK.txt
From @christophe-lunarg
From @charles-lunarg
The text was updated successfully, but these errors were encountered: