Commit: 7a8403dbb003b0a79fb917b3f23c329f72522ef8
Author: Clément Foucault
Date:   Mon Jul 2 19:34:44 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB7a8403dbb003b0a79fb917b3f23c329f72522ef8

Revert "GHOST: Fix uninitialized values."

This reverts commit aca403c819c4fc9e1e7197bbe3027d43d114bfd6.

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

M       intern/ghost/intern/GHOST_ContextGLX.cpp
M       intern/ghost/intern/GHOST_ContextWGL.cpp

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

diff --git a/intern/ghost/intern/GHOST_ContextGLX.cpp 
b/intern/ghost/intern/GHOST_ContextGLX.cpp
index 1a995eb2cbc..c94151a1a0e 100644
--- a/intern/ghost/intern/GHOST_ContextGLX.cpp
+++ b/intern/ghost/intern/GHOST_ContextGLX.cpp
@@ -72,8 +72,7 @@ GHOST_ContextGLX::GHOST_ContextGLX(
       m_contextMinorVersion(contextMinorVersion),
       m_contextFlags(contextFlags),
       m_contextResetNotificationStrategy(contextResetNotificationStrategy),
-      m_context(None),
-      m_init(false)
+      m_context(None)
 {
        assert(m_display != NULL);
 }
diff --git a/intern/ghost/intern/GHOST_ContextWGL.cpp 
b/intern/ghost/intern/GHOST_ContextWGL.cpp
index 0047a88fa1d..883c06ecf78 100644
--- a/intern/ghost/intern/GHOST_ContextWGL.cpp
+++ b/intern/ghost/intern/GHOST_ContextWGL.cpp
@@ -70,8 +70,7 @@ GHOST_ContextWGL::GHOST_ContextWGL(
       m_contextFlags(contextFlags),
       m_alphaBackground(alphaBackground),
       m_contextResetNotificationStrategy(contextResetNotificationStrategy),
-      m_hGLRC(NULL),
-      m_init(false)
+      m_hGLRC(NULL)
 #ifndef NDEBUG
       ,
       m_dummyVendor(NULL),

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to