Fix overlapping GPU device bitmasks

This did not end up affecting actual behavior, but it is wrong.
Found by Ethan Hall.

Ref D14525
This commit is contained in:
Brecht Van Lommel 2022-04-04 16:33:33 +02:00
parent d6f5b02940
commit aa1ae1d3c8
1 changed files with 3 additions and 3 deletions

View File

@ -25,9 +25,9 @@ typedef enum eGPUDeviceType {
GPU_DEVICE_ATI = (1 << 1),
GPU_DEVICE_INTEL = (1 << 2),
GPU_DEVICE_INTEL_UHD = (1 << 3),
GPU_DEVICE_APPLE = (1 << 3),
GPU_DEVICE_SOFTWARE = (1 << 4),
GPU_DEVICE_UNKNOWN = (1 << 5),
GPU_DEVICE_APPLE = (1 << 4),
GPU_DEVICE_SOFTWARE = (1 << 5),
GPU_DEVICE_UNKNOWN = (1 << 6),
GPU_DEVICE_ANY = (0xff),
} eGPUDeviceType;