summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lucas Reis2023-11-07 22:47:02 -0400
committerGravatar Lucas Reis2023-11-07 22:47:02 -0400
commitedce713fc92881bea1f6bb049b06efb2e86d81fa (patch)
treed93642e212d8f9042be265c6a199f2d648c0eaf9 /src
parentMerge pull request #11977 from SamayXD/patch-1 (diff)
downloadyuzu-edce713fc92881bea1f6bb049b06efb2e86d81fa.tar.gz
yuzu-edce713fc92881bea1f6bb049b06efb2e86d81fa.tar.xz
yuzu-edce713fc92881bea1f6bb049b06efb2e86d81fa.zip
Allocate resources for test window before getting system info
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/vk_device_info.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/yuzu/vk_device_info.cpp b/src/yuzu/vk_device_info.cpp
index 92f10d315..ab0d39c25 100644
--- a/src/yuzu/vk_device_info.cpp
+++ b/src/yuzu/vk_device_info.cpp
@@ -31,6 +31,7 @@ void PopulateRecords(std::vector<Record>& records, QWindow* window) try {
31 // Create a test window with a Vulkan surface type for checking present modes. 31 // Create a test window with a Vulkan surface type for checking present modes.
32 QWindow test_window(window); 32 QWindow test_window(window);
33 test_window.setSurfaceType(QWindow::VulkanSurface); 33 test_window.setSurfaceType(QWindow::VulkanSurface);
34 test_window.create();
34 auto wsi = QtCommon::GetWindowSystemInfo(&test_window); 35 auto wsi = QtCommon::GetWindowSystemInfo(&test_window);
35 36
36 vk::InstanceDispatch dld; 37 vk::InstanceDispatch dld;