mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-09 09:39:13 +00:00
VideoBackends:Metal: Use DriverDetails for bugs
This commit is contained in:
parent
716c0980d7
commit
a5ef9dfd53
4 changed files with 33 additions and 6 deletions
|
@ -13,7 +13,8 @@ namespace DriverDetails
|
|||
enum API
|
||||
{
|
||||
API_OPENGL = (1 << 0),
|
||||
API_VULKAN = (1 << 1)
|
||||
API_VULKAN = (1 << 1),
|
||||
API_METAL = (1 << 2),
|
||||
};
|
||||
|
||||
// Enum of supported operating systems
|
||||
|
@ -64,6 +65,7 @@ enum Driver
|
|||
DRIVER_IMGTEC, // Official PowerVR driver
|
||||
DRIVER_VIVANTE, // Official Vivante driver
|
||||
DRIVER_PORTABILITY, // Vulkan via Metal on macOS
|
||||
DRIVER_APPLE, // Metal on macOS
|
||||
DRIVER_UNKNOWN // Unknown driver, default to official hardware driver
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue