diff --git a/src/OpenGl/OpenGl_GraphicDriver.hxx b/src/OpenGl/OpenGl_GraphicDriver.hxx index 5fb33ca6ac..5000619a26 100644 --- a/src/OpenGl/OpenGl_GraphicDriver.hxx +++ b/src/OpenGl/OpenGl_GraphicDriver.hxx @@ -204,25 +204,6 @@ public: DEFINE_STANDARD_RTTIEXT(OpenGl_GraphicDriver,Graphic3d_GraphicDriver) -protected: - - Standard_Boolean myIsOwnContext; //!< indicates that shared context has been created within OpenGl_GraphicDriver -#if defined(HAVE_EGL) || defined(HAVE_GLES2) || defined(OCCT_UWP) || defined(__ANDROID__) || defined(__QNX__) - Aspect_Display myEglDisplay; //!< EGL connection to the Display : EGLDisplay - Aspect_RenderingContext myEglContext; //!< EGL rendering context : EGLContext - void* myEglConfig; //!< EGL configuration : EGLConfig -#endif - - Handle(OpenGl_Caps) myCaps; - NCollection_Map myMapOfView; - NCollection_DataMap myMapOfStructure; - -public: - - TColStd_MapOfInteger myLayerIds; - TColStd_SequenceOfInteger myLayerSeq; - OpenGl_MapOfZLayerSettings myMapOfZLayerSettings; - public: //! State counter for OpenGl structures. @@ -233,6 +214,21 @@ public: protected: + Standard_Boolean myIsOwnContext; //!< indicates that shared context has been created within OpenGl_GraphicDriver +#if defined(HAVE_EGL) || defined(HAVE_GLES2) || defined(OCCT_UWP) || defined(__ANDROID__) || defined(__QNX__) + Aspect_Display myEglDisplay; //!< EGL connection to the Display : EGLDisplay + Aspect_RenderingContext myEglContext; //!< EGL rendering context : EGLContext + void* myEglConfig; //!< EGL configuration : EGLConfig +#endif + + Handle(OpenGl_Caps) myCaps; + NCollection_Map myMapOfView; + NCollection_DataMap myMapOfStructure; + + TColStd_MapOfInteger myLayerIds; + TColStd_SequenceOfInteger myLayerSeq; + OpenGl_MapOfZLayerSettings myMapOfZLayerSettings; + mutable OpenGl_StateCounter myStateCounter; //!< State counter for OpenGl structures. mutable OpenGl_StateCounter myUIDGenerator; //!< Unique ID counter for primitive arrays.