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/intern
diff options
context:
space:
mode:
authorAntony Riakiotakis <kalast@gmail.com>2015-02-25 16:15:07 +0300
committerAntony Riakiotakis <kalast@gmail.com>2015-02-25 16:15:07 +0300
commitdf258c90541c5fabe7755b8859752e1a78ca18e0 (patch)
tree046e0f66d7ebfb4d1e5fbc9edd9507b80d3d6bb1 /intern
parent5d01db80350ac05e4e03325b6d982f2e46c04f4a (diff)
Fix silly mistake with flags which would make stereo buffers unsupported
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/GHOST_Types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/ghost/GHOST_Types.h b/intern/ghost/GHOST_Types.h
index 6dd92e5c2f9..eccbaadb71d 100644
--- a/intern/ghost/GHOST_Types.h
+++ b/intern/ghost/GHOST_Types.h
@@ -56,8 +56,8 @@ typedef struct {
} GHOST_GLSettings;
typedef enum {
- GHOST_glStereoVisual = 0,
- GHOST_glWarnSupport
+ GHOST_glStereoVisual = (1 << 0),
+ GHOST_glWarnSupport = (1 << 1)
} GHOST_GLFlags;