summaryrefslogtreecommitdiff
path: root/src/yuzu/vk_device_info.h
diff options
context:
space:
mode:
authorlat9nq <22451773+lat9nq@users.noreply.github.com>2023-06-15 16:17:19 -0400
committerlat9nq <22451773+lat9nq@users.noreply.github.com>2023-06-18 16:15:51 -0400
commitb9a86b040b7e310ad3b39540ce7b6249cb965536 (patch)
tree3be5cfc06e7bd571bd75ae4791e9ba3e488bdc67 /src/yuzu/vk_device_info.h
parent346c253cd2397ac152fd10f6b99d6af79349a77f (diff)
vk_device_info: Check only affected Intel drivers
Renames is_intel_proprietary to has_broken_compute for accuracy. vk_device_info: Use vulkan::device to check compute
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);