[Bf-blender-cvs] [df258c9] master: Fix silly mistake with flags which would make stereo buffers unsupported

Antony Riakiotakis noreply at git.blender.org
Wed Feb 25 14:15:12 CET 2015


Commit: df258c90541c5fabe7755b8859752e1a78ca18e0
Author: Antony Riakiotakis
Date:   Wed Feb 25 14:15:07 2015 +0100
Branches: master
https://developer.blender.org/rBdf258c90541c5fabe7755b8859752e1a78ca18e0

Fix silly mistake with flags which would make stereo buffers unsupported

===================================================================

M	intern/ghost/GHOST_Types.h

===================================================================

diff --git a/intern/ghost/GHOST_Types.h b/intern/ghost/GHOST_Types.h
index 6dd92e5..eccbaad 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;




More information about the Bf-blender-cvs mailing list