summaryrefslogtreecommitdiffstats
path: root/src/yuzu/vk_device_info.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-06-20 15:55:14 +0200
committerGitHub <noreply@github.com>2023-06-20 15:55:14 +0200
commit93061d1ea1889d79455820ff55ad7d4e402ff01e (patch)
tree136149ad79e7d0970b7cbc46158b6d772db3726b /src/yuzu/vk_device_info.h
parentMerge pull request #10840 from Kelebek1/unbug_blinks_brain (diff)
parentvulkan_device: Remove brace initializer (diff)
downloadyuzu-93061d1ea1889d79455820ff55ad7d4e402ff01e.tar
yuzu-93061d1ea1889d79455820ff55ad7d4e402ff01e.tar.gz
yuzu-93061d1ea1889d79455820ff55ad7d4e402ff01e.tar.bz2
yuzu-93061d1ea1889d79455820ff55ad7d4e402ff01e.tar.lz
yuzu-93061d1ea1889d79455820ff55ad7d4e402ff01e.tar.xz
yuzu-93061d1ea1889d79455820ff55ad7d4e402ff01e.tar.zst
yuzu-93061d1ea1889d79455820ff55ad7d4e402ff01e.zip
Diffstat (limited to 'src/yuzu/vk_device_info.h')
-rw-r--r--src/yuzu/vk_device_info.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/vk_device_info.h b/src/yuzu/vk_device_info.h
index 5a6c64416..bda8262f4 100644
--- a/src/yuzu/vk_device_info.h
+++ b/src/yuzu/vk_device_info.h
@@ -24,12 +24,12 @@ namespace VkDeviceInfo {
class Record {
public:
explicit Record(std::string_view name, const std::vector<VkPresentModeKHR>& vsync_modes,
- bool is_intel_proprietary);
+ bool has_broken_compute);
~Record();
const std::string name;
const std::vector<VkPresentModeKHR> vsync_support;
- const bool is_intel_proprietary;
+ const bool has_broken_compute;
};
void PopulateRecords(std::vector<Record>& records, QWindow* window);