mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
VulkanContext: Don't assume anv for Intel GPUs on macOS
This commit is contained in:
@ -869,8 +869,8 @@ void VulkanContext::InitDriverDetails()
|
|||||||
{
|
{
|
||||||
// Apart from the driver version, Intel does not appear to provide a way to
|
// Apart from the driver version, Intel does not appear to provide a way to
|
||||||
// differentiate between anv and the binary driver (Skylake+). Assume to be
|
// differentiate between anv and the binary driver (Skylake+). Assume to be
|
||||||
// using anv if we not running on Windows.
|
// using anv if we're not running on Windows or macOS.
|
||||||
#ifdef WIN32
|
#if defined(WIN32) || defined(__APPLE__)
|
||||||
vendor = DriverDetails::VENDOR_INTEL;
|
vendor = DriverDetails::VENDOR_INTEL;
|
||||||
driver = DriverDetails::DRIVER_INTEL;
|
driver = DriverDetails::DRIVER_INTEL;
|
||||||
#else
|
#else
|
||||||
|
Reference in New Issue
Block a user