mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-25 20:47:54 -05:00
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
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user