mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-01-19 14:52:10 +01:00
[dxvk] Report app name to the Vulkan implementation
Because why not?
This commit is contained in:
parent
f32aff29fa
commit
70b14f9dbf
@ -62,10 +62,12 @@ namespace dxvk {
|
||||
Logger::info("Enabled instance extensions:");
|
||||
this->logNameList(extensionNameList);
|
||||
|
||||
std::string appName = env::getExeName();
|
||||
|
||||
VkApplicationInfo appInfo;
|
||||
appInfo.sType = VK_STRUCTURE_TYPE_APPLICATION_INFO;
|
||||
appInfo.pNext = nullptr;
|
||||
appInfo.pApplicationName = nullptr;
|
||||
appInfo.pApplicationName = appName.c_str();
|
||||
appInfo.applicationVersion = 0;
|
||||
appInfo.pEngineName = "DXVK";
|
||||
appInfo.engineVersion = VK_MAKE_VERSION(0, 9, 1);
|
||||
|
Loading…
x
Reference in New Issue
Block a user