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
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2010-07-16 14:13:04 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-07-16 14:13:04 +0400
commitf6ae7af2431a83f4492f72fd1b1df421f8675936 (patch)
tree3ce089f8f97873f1c9b8c34634311613e0cb2f87 /source/blender/gpu/GPU_extensions.h
parentd94868f82138baedbd227c708878577061191bbe (diff)
2.5: automatic draw method now uses overlap for Intel on all platforms.
Diffstat (limited to 'source/blender/gpu/GPU_extensions.h')
-rw-r--r--source/blender/gpu/GPU_extensions.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/gpu/GPU_extensions.h b/source/blender/gpu/GPU_extensions.h
index 5275f8988a8..a7f43d3b0ae 100644
--- a/source/blender/gpu/GPU_extensions.h
+++ b/source/blender/gpu/GPU_extensions.h
@@ -75,17 +75,17 @@ typedef enum GPUDeviceType {
} GPUDeviceType;
typedef enum GPUOSType {
- GPU_OS_WIN = (1<<16),
- GPU_OS_MAC = (1<<17),
- GPU_OS_UNIX = (1<<18),
+ GPU_OS_WIN = (1<<8),
+ GPU_OS_MAC = (1<<9),
+ GPU_OS_UNIX = (1<<10),
GPU_OS_ANY = (0xff00)
} GPUOSType;
typedef enum GPUDriverType {
- GPU_DRIVER_OFFICIAL = (1<<24),
- GPU_DRIVER_OPENSOURCE = (1<<25),
- GPU_DRIVER_SOFTWARE = (1<<26),
- GPU_DRIVER_UNKNOWN = (0xff0000)
+ GPU_DRIVER_OFFICIAL = (1<<16),
+ GPU_DRIVER_OPENSOURCE = (1<<17),
+ GPU_DRIVER_SOFTWARE = (1<<18),
+ GPU_DRIVER_ANY = (0xff0000)
} GPUDriverType;
int GPU_type_matches(GPUDeviceType device, GPUOSType os, GPUDriverType driver);