summaryrefslogtreecommitdiff
path: root/src/yuzu/configuration/configure_per_game.h
diff options
context:
space:
mode:
authorlat9nq <22451773+lat9nq@users.noreply.github.com>2023-05-28 21:46:02 +0000
committerlat9nq <22451773+lat9nq@users.noreply.github.com>2023-06-06 01:54:44 -0400
commitfc0c4db20d4161984a960a689afa0a08a5a4b401 (patch)
tree9271e436b5bbb08ea4d642a44aa50f788b6789e8 /src/yuzu/configuration/configure_per_game.h
parent069d7e6be4faa6d10f7e2dd3765d93f925aa2f25 (diff)
yuzu-qt: Load Vulkan device info at startup
Loading it when the configuration opens now incurs a noticeable delay. We also don't need to rediscover the same data repeatedly each time the configuration opens. Moves vulkan device info discovery to yuzu's startup as opposed to the configure_graphics constructor.
Diffstat (limited to 'src/yuzu/configuration/configure_per_game.h')
-rw-r--r--src/yuzu/configuration/configure_per_game.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/yuzu/configuration/configure_per_game.h b/src/yuzu/configuration/configure_per_game.h
index 85752f1fa..7ec1ded06 100644
--- a/src/yuzu/configuration/configure_per_game.h
+++ b/src/yuzu/configuration/configure_per_game.h
@@ -5,11 +5,13 @@
#include <memory>
#include <string>
+#include <vector>
#include <QDialog>
#include <QList>
#include "core/file_sys/vfs_types.h"
+#include "vk_device_info.h"
#include "yuzu/configuration/config.h"
namespace Core {
@@ -45,6 +47,7 @@ class ConfigurePerGame : public QDialog {
public:
// Cannot use std::filesystem::path due to https://bugreports.qt.io/browse/QTBUG-73263
explicit ConfigurePerGame(QWidget* parent, u64 title_id_, const std::string& file_name,
+ std::vector<VkDeviceInfo::Record>& vk_device_records,
Core::System& system_);
~ConfigurePerGame() override;