summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-11-10 10:38:49 -0500
committerGitHub <noreply@github.com>2023-11-10 10:38:49 -0500
commit2f9487cd38aae71187b2f324a45b7e3657f18b48 (patch)
treed93642e212d8f9042be265c6a199f2d648c0eaf9 /src
parentf75363177ebca1e4ccf447e0bfb8894ad0136f20 (diff)
parentedce713fc92881bea1f6bb049b06efb2e86d81fa (diff)
Merge pull request #11981 from lucasreis1/patch
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 {
// Create a test window with a Vulkan surface type for checking present modes.
QWindow test_window(window);
test_window.setSurfaceType(QWindow::VulkanSurface);
+ test_window.create();
auto wsi = QtCommon::GetWindowSystemInfo(&test_window);
vk::InstanceDispatch dld;