mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 14:19:02 +00:00
VulkanContext: Don't assume anv for Intel GPUs on macOS
This commit is contained in:
parent
22f7c07caf
commit
aa64f7f14f
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue