mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 21:41:26 +12:00
vk: Fix typo
This commit is contained in:
parent
d545aa01b2
commit
9fb79b8930
1 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@ namespace vk
|
||||||
// INTEL
|
// INTEL
|
||||||
INTEL_generic,
|
INTEL_generic,
|
||||||
INTEL_alchemist,
|
INTEL_alchemist,
|
||||||
_INTEL_ENUM_MAX, // Do not insert INTEL enums beyond this point
|
_INTEL_ENUM_MAX_, // Do not insert INTEL enums beyond this point
|
||||||
};
|
};
|
||||||
|
|
||||||
enum class driver_vendor
|
enum class driver_vendor
|
||||||
|
@ -71,7 +71,7 @@ namespace vk
|
||||||
|
|
||||||
static inline bool is_NVIDIA(chip_class chip) { return chip >= chip_class::NV_generic && chip < chip_class::_NV_ENUM_MAX_; }
|
static inline bool is_NVIDIA(chip_class chip) { return chip >= chip_class::NV_generic && chip < chip_class::_NV_ENUM_MAX_; }
|
||||||
static inline bool is_AMD(chip_class chip) { return chip >= chip_class::AMD_gcn_generic && chip < chip_class::_AMD_ENUM_MAX_; }
|
static inline bool is_AMD(chip_class chip) { return chip >= chip_class::AMD_gcn_generic && chip < chip_class::_AMD_ENUM_MAX_; }
|
||||||
static inline bool is_INTEL(chip_class chip) { return chip >= chip_class::INTEL_generic && chip < chip_class::_INTEL_ENUM_MAX; }
|
static inline bool is_INTEL(chip_class chip) { return chip >= chip_class::INTEL_generic && chip < chip_class::_INTEL_ENUM_MAX_; }
|
||||||
|
|
||||||
static inline bool is_NVIDIA(driver_vendor vendor) { return vendor == driver_vendor::NVIDIA || vendor == driver_vendor::NVK; }
|
static inline bool is_NVIDIA(driver_vendor vendor) { return vendor == driver_vendor::NVIDIA || vendor == driver_vendor::NVK; }
|
||||||
static inline bool is_AMD(driver_vendor vendor) { return vendor == driver_vendor::AMD || vendor == driver_vendor::RADV; }
|
static inline bool is_AMD(driver_vendor vendor) { return vendor == driver_vendor::AMD || vendor == driver_vendor::RADV; }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue