summaryrefslogtreecommitdiff
path: root/src/yuzu/main.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-06-18 09:42:55 -0400
committerGitHub <noreply@github.com>2023-06-18 09:42:55 -0400
commitaf7f3f078cfee0fd67146aa63494ab8d7f02d8d2 (patch)
tree492ab6651e303361df8ee8a40333fb48eb17448e /src/yuzu/main.h
parent66b8042b59756f7f44c41fed207cb625a2f4a563 (diff)
parent013c34cb321873eca0c4bfc7e2347c52bb09ed9a (diff)
Merge pull request #10486 from lat9nq/vk-device-find-once
yuzu-qt: Load Vulkan device info at startup
Diffstat (limited to 'src/yuzu/main.h')
-rw-r--r--src/yuzu/main.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/yuzu/main.h b/src/yuzu/main.h
index 6bb70972f..e0e775d87 100644
--- a/src/yuzu/main.h
+++ b/src/yuzu/main.h
@@ -118,6 +118,10 @@ enum class ReinitializeKeyBehavior {
Warning,
};
+namespace VkDeviceInfo {
+class Record;
+}
+
class GMainWindow : public QMainWindow {
Q_OBJECT
@@ -418,6 +422,8 @@ private:
GameListPlaceholder* game_list_placeholder;
+ std::vector<VkDeviceInfo::Record> vk_device_records;
+
// Status bar elements
QLabel* message_label = nullptr;
QLabel* shader_building_label = nullptr;