Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rw-r--r--source/blender/gpu/GPU_platform.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/gpu/GPU_platform.h b/source/blender/gpu/GPU_platform.h
index d999216c7ff..b63fe4c0580 100644
--- a/source/blender/gpu/GPU_platform.h
+++ b/source/blender/gpu/GPU_platform.h
@@ -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;