From f8ae3605667ac7111be11353af0f30c2c11f0112 Mon Sep 17 00:00:00 2001 From: isk Date: Mon, 22 Jun 2015 15:01:37 +0300 Subject: [PATCH] 0023028: Visualization, TKOpenGl - eliminate global static variables OpenGl_CappingAlgo - move global variables to OpenGl_Workspace class fields. OpenGl_View::ShaderSource::Source() - drop static for local variable. OpenGl_Window - drop redundant global constant THE_DEFAULT_BG_COLOR. --- src/OpenGl/OpenGl_CappingAlgo.cxx | 35 ++------------------ src/OpenGl/OpenGl_CappingAlgo.hxx | 21 ------------ src/OpenGl/OpenGl_CappingPlaneResource.cxx | 10 ++++++ src/OpenGl/OpenGl_GraphicDriver_Layer.cxx | 37 ++++++++++++---------- src/OpenGl/OpenGl_Matrix.cxx | 15 --------- src/OpenGl/OpenGl_Matrix.hxx | 10 ------ src/OpenGl/OpenGl_View.cxx | 25 ++++++++------- src/OpenGl/OpenGl_View_Raytrace.cxx | 4 +-- src/OpenGl/OpenGl_Window.cxx | 3 +- src/OpenGl/OpenGl_Window_1.mm | 7 +--- src/OpenGl/OpenGl_Workspace.cxx | 6 ++++ src/OpenGl/OpenGl_Workspace.hxx | 23 ++++++++++++++ 12 files changed, 80 insertions(+), 116 deletions(-) diff --git a/src/OpenGl/OpenGl_CappingAlgo.cxx b/src/OpenGl/OpenGl_CappingAlgo.cxx index cb94604302..3840d35955 100755 --- a/src/OpenGl/OpenGl_CappingAlgo.cxx +++ b/src/OpenGl/OpenGl_CappingAlgo.cxx @@ -24,14 +24,8 @@ IMPLEMENT_STANDARD_HANDLE(OpenGl_CappingAlgoFilter, OpenGl_RenderFilter) IMPLEMENT_STANDARD_RTTIEXT(OpenGl_CappingAlgoFilter, OpenGl_RenderFilter) -Handle(OpenGl_RenderFilter) OpenGl_CappingAlgo::myRenderFilter; -OpenGl_AspectFace OpenGl_CappingAlgo::myFrontCulling; -OpenGl_AspectFace OpenGl_CappingAlgo::myNoneCulling; -Standard_Boolean OpenGl_CappingAlgo::myIsInit = Standard_False; - namespace { - #if !defined(GL_ES_VERSION_2_0) static const GLint THE_FILLPRIM_FROM = GL_TRIANGLES; static const GLint THE_FILLPRIM_TO = GL_POLYGON; @@ -70,16 +64,12 @@ void OpenGl_CappingAlgo::RenderCapping (const Handle(OpenGl_Workspace)& theWork return; } - // init internal data - Init(); - // remember current aspect face defined in workspace const OpenGl_AspectFace* aFaceAsp = theWorkspace->AspectFace (Standard_False); // replace primitive groups rendering filter - static Handle(OpenGl_CappingAlgoFilter) aCappingFilter = new OpenGl_CappingAlgoFilter(); Handle(OpenGl_RenderFilter) aRenderFilter = theWorkspace->GetRenderFilter(); - theWorkspace->SetRenderFilter (aCappingFilter); + theWorkspace->SetRenderFilter (theWorkspace->DefaultCappingAlgoFilter()); // prepare for rendering the clip planes glEnable (GL_STENCIL_TEST); @@ -113,7 +103,7 @@ void OpenGl_CappingAlgo::RenderCapping (const Handle(OpenGl_Workspace)& theWork glColorMask (GL_FALSE, GL_FALSE, GL_FALSE, GL_FALSE); // override aspects, disable culling - theWorkspace->SetAspectFace (NoneCulling()); + theWorkspace->SetAspectFace (&theWorkspace->NoneCulling()); theWorkspace->AspectFace (Standard_True); // evaluate number of pair faces @@ -131,7 +121,7 @@ void OpenGl_CappingAlgo::RenderCapping (const Handle(OpenGl_Workspace)& theWork } // override material, cull back faces - theWorkspace->SetAspectFace (FrontCulling()); + theWorkspace->SetAspectFace (&theWorkspace->FrontCulling()); theWorkspace->AspectFace (Standard_True); // enable all clip plane except the rendered one @@ -215,25 +205,6 @@ void OpenGl_CappingAlgo::RenderPlane (const Handle(OpenGl_Workspace)& theWorkspa aContext->ReleaseResource (aResId, Standard_True); } -// ======================================================================= -// function : Init -// purpose : -// ======================================================================= -void OpenGl_CappingAlgo::Init() -{ - if (myIsInit) - return; - - myRenderFilter = new OpenGl_CappingAlgoFilter(); - myNoneCulling.ChangeCullingMode() = TelCullNone; - myNoneCulling.ChangeEdge() = 0; - - myFrontCulling.ChangeCullingMode() = TelCullBack; - myFrontCulling.ChangeEdge() = 0; - - myIsInit = Standard_True; -} - // ======================================================================= // function : CanRender // purpose : diff --git a/src/OpenGl/OpenGl_CappingAlgo.hxx b/src/OpenGl/OpenGl_CappingAlgo.hxx index d45e9af36b..1df476b8a1 100755 --- a/src/OpenGl/OpenGl_CappingAlgo.hxx +++ b/src/OpenGl/OpenGl_CappingAlgo.hxx @@ -45,27 +45,6 @@ public: //! @param thePlane [in] the graphical plane, for which the capping surface is rendered. Standard_EXPORT static void RenderPlane (const Handle(OpenGl_Workspace)& theWorkspace, const Handle(Graphic3d_ClipPlane)& thePlane); - -private: - - //! Init algorithm. - static void Init(); - - //! @return capping algorithm rendering filter. - static const Handle(OpenGl_RenderFilter)& CappingFilter() { return myRenderFilter; } - - //! @return face aspect for front face culling mode. - static const OpenGl_AspectFace* FrontCulling() { return &myFrontCulling; } - - //! @return face aspect for none culling mode. - static const OpenGl_AspectFace* NoneCulling() { return &myNoneCulling; } - -private: - - static Handle(OpenGl_RenderFilter) myRenderFilter; - static OpenGl_AspectFace myFrontCulling; - static OpenGl_AspectFace myNoneCulling; - static Standard_Boolean myIsInit; }; //! Graphical capping rendering algorithm filter. diff --git a/src/OpenGl/OpenGl_CappingPlaneResource.cxx b/src/OpenGl/OpenGl_CappingPlaneResource.cxx index 3691beb04b..fe483012f8 100755 --- a/src/OpenGl/OpenGl_CappingPlaneResource.cxx +++ b/src/OpenGl/OpenGl_CappingPlaneResource.cxx @@ -43,6 +43,16 @@ namespace 0.0f, 0.0f,-1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f }; + + static const OpenGl_Matrix OpenGl_IdentityMatrix = + { + // mat[4][4] + { { 1.0f, 0.0f, 0.0f, 0.0f }, + { 0.0f, 1.0f, 0.0f, 0.0f }, + { 0.0f, 0.0f, 1.0f, 0.0f }, + { 0.0f, 0.0f, 0.0f, 1.0f } } + }; + } IMPLEMENT_STANDARD_HANDLE (OpenGl_CappingPlaneResource, OpenGl_Resource) diff --git a/src/OpenGl/OpenGl_GraphicDriver_Layer.cxx b/src/OpenGl/OpenGl_GraphicDriver_Layer.cxx index be0389ed03..1180d47ecb 100644 --- a/src/OpenGl/OpenGl_GraphicDriver_Layer.cxx +++ b/src/OpenGl/OpenGl_GraphicDriver_Layer.cxx @@ -40,25 +40,28 @@ struct OpenGl_LAYER_PROP /*----------------------------------------------------------------------*/ -static const TEL_COLOUR myDefaultColor = {{ 1.F, 1.F, 1.F, 1.F }}; -static const CALL_DEF_CONTEXTTEXT myDefaultContextText = +namespace { - 1, //IsDef - 1, //IsSet - "Courier", //Font - 0.3F, //Space - 1.F, //Expan - { 1.F, 1.F, 1.F }, //Color - (int)Aspect_TOST_NORMAL, //Style - (int)Aspect_TODT_NORMAL, //DisplayType - { 1.F, 1.F, 1.F }, //ColorSubTitle - 0, //TextZoomable - 0.F, //TextAngle - (int)Font_FA_Regular //TextFontAspect -}; + static const TEL_COLOUR myDefaultColor = {{ 1.F, 1.F, 1.F, 1.F }}; + static const CALL_DEF_CONTEXTTEXT myDefaultContextText = + { + 1, //IsDef + 1, //IsSet + "Courier", //Font + 0.3F, //Space + 1.F, //Expan + { 1.F, 1.F, 1.F }, //Color + (int)Aspect_TOST_NORMAL, //Style + (int)Aspect_TODT_NORMAL, //DisplayType + { 1.F, 1.F, 1.F }, //ColorSubTitle + 0, //TextZoomable + 0.F, //TextAngle + (int)Font_FA_Regular //TextFontAspect + }; -static Standard_Boolean TheLayerIsOpen = Standard_False; -static OpenGl_LAYER_PROP TheLayerProp; + static Standard_Boolean TheLayerIsOpen = Standard_False; + static OpenGl_LAYER_PROP TheLayerProp; +} /*----------------------------------------------------------------------*/ diff --git a/src/OpenGl/OpenGl_Matrix.cxx b/src/OpenGl/OpenGl_Matrix.cxx index 945e66fca0..877b722c3d 100644 --- a/src/OpenGl/OpenGl_Matrix.cxx +++ b/src/OpenGl/OpenGl_Matrix.cxx @@ -17,21 +17,6 @@ /*----------------------------------------------------------------------*/ -void OpenGl_Multiplymat3 (OpenGl_Matrix *c, const OpenGl_Matrix *a, const OpenGl_Matrix *b) -{ - int row, col, i; - for (row = 0; row < 4; row++) { - for (col = 0; col < 4; col++) { - float sum = 0.F; - for (i = 0; i < 4; i++) - sum += a->mat[row][i] * b->mat[i][col]; - c->mat[row][col] = sum; - } - } -} - -/*----------------------------------------------------------------------*/ - void OpenGl_Transposemat3 (OpenGl_Matrix *c, const OpenGl_Matrix *a) { Tint row, col; diff --git a/src/OpenGl/OpenGl_Matrix.hxx b/src/OpenGl/OpenGl_Matrix.hxx index 35bd42418c..e92da57706 100644 --- a/src/OpenGl/OpenGl_Matrix.hxx +++ b/src/OpenGl/OpenGl_Matrix.hxx @@ -24,16 +24,6 @@ struct OpenGl_Matrix DEFINE_STANDARD_ALLOC }; -Standard_EXPORT void OpenGl_Multiplymat3 (OpenGl_Matrix *c, const OpenGl_Matrix *a, const OpenGl_Matrix *b); Standard_EXPORT void OpenGl_Transposemat3 (OpenGl_Matrix *c, const OpenGl_Matrix *a); -static const OpenGl_Matrix OpenGl_IdentityMatrix = -{ - // mat[4][4] - { { 1.0f, 0.0f, 0.0f, 0.0f }, - { 0.0f, 1.0f, 0.0f, 0.0f }, - { 0.0f, 0.0f, 1.0f, 0.0f }, - { 0.0f, 0.0f, 0.0f, 1.0f } } -}; - #endif //OpenGl_Matrix_Header diff --git a/src/OpenGl/OpenGl_View.cxx b/src/OpenGl/OpenGl_View.cxx index d29388017f..e1a5655e7a 100644 --- a/src/OpenGl/OpenGl_View.cxx +++ b/src/OpenGl/OpenGl_View.cxx @@ -35,18 +35,21 @@ IMPLEMENT_STANDARD_RTTIEXT(OpenGl_View,MMgt_TShared) /*----------------------------------------------------------------------*/ -static const Tmatrix3 myDefaultMatrix = { { 1.F, 0.F, 0.F, 0.F }, { 0.F, 1.F, 0.F, 0.F }, { 0.F, 0.F, 1.F, 0.F }, { 0.F, 0.F, 0.F, 1.F } }; -static const OPENGL_ZCLIP myDefaultZClip = { { Standard_True, 0.F }, { Standard_True, 1.F } }; - -static const OPENGL_FOG myDefaultFog = { Standard_False, 0.F, 1.F, { { 0.F, 0.F, 0.F, 1.F } } }; -static const TEL_TRANSFORM_PERSISTENCE myDefaultTransPers = { 0, 0.F, 0.F, 0.F }; -static const GLdouble THE_IDENTITY_MATRIX[4][4] = +namespace { - {1.0, 0.0, 0.0, 0.0}, - {0.0, 1.0, 0.0, 0.0}, - {0.0, 0.0, 1.0, 0.0}, - {0.0, 0.0, 0.0, 1.0} -}; + static const Tmatrix3 myDefaultMatrix = { { 1.F, 0.F, 0.F, 0.F }, { 0.F, 1.F, 0.F, 0.F }, { 0.F, 0.F, 1.F, 0.F }, { 0.F, 0.F, 0.F, 1.F } }; + static const OPENGL_ZCLIP myDefaultZClip = { { Standard_True, 0.F }, { Standard_True, 1.F } }; + + static const OPENGL_FOG myDefaultFog = { Standard_False, 0.F, 1.F, { { 0.F, 0.F, 0.F, 1.F } } }; + static const TEL_TRANSFORM_PERSISTENCE myDefaultTransPers = { 0, 0.F, 0.F, 0.F }; + static const GLdouble THE_IDENTITY_MATRIX[4][4] = + { + {1.0, 0.0, 0.0, 0.0}, + {0.0, 1.0, 0.0, 0.0}, + {0.0, 0.0, 1.0, 0.0}, + {0.0, 0.0, 0.0, 1.0} + }; +} /*----------------------------------------------------------------------*/ diff --git a/src/OpenGl/OpenGl_View_Raytrace.cxx b/src/OpenGl/OpenGl_View_Raytrace.cxx index 52e2a5bd98..d5923c59f7 100644 --- a/src/OpenGl/OpenGl_View_Raytrace.cxx +++ b/src/OpenGl/OpenGl_View_Raytrace.cxx @@ -999,7 +999,7 @@ const TCollection_AsciiString OpenGl_View::ShaderSource::EMPTY_PREFIX; // ======================================================================= TCollection_AsciiString OpenGl_View::ShaderSource::Source() const { - static const TCollection_AsciiString aVersion = "#version 140"; + const TCollection_AsciiString aVersion = "#version 140"; if (myPrefix.IsEmpty()) { @@ -2591,4 +2591,4 @@ Standard_Boolean OpenGl_View::raytrace (const Graphic3d_CView& theCView, glEnable (GL_DEPTH_TEST); return Standard_True; -} \ No newline at end of file +} diff --git a/src/OpenGl/OpenGl_Window.cxx b/src/OpenGl/OpenGl_Window.cxx index 785559c615..e91bce09d9 100644 --- a/src/OpenGl/OpenGl_Window.cxx +++ b/src/OpenGl/OpenGl_Window.cxx @@ -36,7 +36,6 @@ IMPLEMENT_STANDARD_RTTIEXT(OpenGl_Window,MMgt_TShared) namespace { - static const TEL_COLOUR THE_DEFAULT_BG_COLOR = { { 0.F, 0.F, 0.F, 1.F } }; #if defined(HAVE_EGL) || defined(__ANDROID__) // @@ -141,12 +140,12 @@ OpenGl_Window::OpenGl_Window (const Handle(OpenGl_GraphicDriver)& theDriver, myOwnGContext (theGContext == 0), myWidth (theCWindow.dx), myHeight (theCWindow.dy), - myBgColor (THE_DEFAULT_BG_COLOR), mySwapInterval (theCaps->swapInterval) { myBgColor.rgb[0] = theCWindow.Background.r; myBgColor.rgb[1] = theCWindow.Background.g; myBgColor.rgb[2] = theCWindow.Background.b; + myBgColor.rgb[3] = 1.0f; Standard_Boolean isCoreProfile = Standard_False; diff --git a/src/OpenGl/OpenGl_Window_1.mm b/src/OpenGl/OpenGl_Window_1.mm index a9386eaf91..41e692a8e6 100644 --- a/src/OpenGl/OpenGl_Window_1.mm +++ b/src/OpenGl/OpenGl_Window_1.mm @@ -49,11 +49,6 @@ #include #endif -namespace -{ - static const TEL_COLOUR THE_DEFAULT_BG_COLOR = { { 0.F, 0.F, 0.F, 1.F } }; -} - // ======================================================================= // function : OpenGl_Window // purpose : @@ -74,12 +69,12 @@ OpenGl_Window::OpenGl_Window (const Handle(OpenGl_GraphicDriver)& theDriver, #endif myWidth (theCWindow.dx), myHeight (theCWindow.dy), - myBgColor (THE_DEFAULT_BG_COLOR), mySwapInterval (theCaps->swapInterval) { myBgColor.rgb[0] = theCWindow.Background.r; myBgColor.rgb[1] = theCWindow.Background.g; myBgColor.rgb[2] = theCWindow.Background.b; + myBgColor.rgb[3] = 1.0f; #if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE EAGLContext* aGLContext = theGContext; diff --git a/src/OpenGl/OpenGl_Workspace.cxx b/src/OpenGl/OpenGl_Workspace.cxx index c9177ef924..f5a0f25249 100644 --- a/src/OpenGl/OpenGl_Workspace.cxx +++ b/src/OpenGl/OpenGl_Workspace.cxx @@ -214,6 +214,12 @@ OpenGl_Workspace::OpenGl_Workspace (const Handle(OpenGl_GraphicDriver)& theDrive int v; if (sscanf (anAaEnv, "%d", &v) > 0) myAntiAliasingMode = v; } + + myDefaultCappingAlgoFilter = new OpenGl_CappingAlgoFilter(); + myNoneCulling.ChangeCullingMode() = TelCullNone; + myNoneCulling.ChangeEdge() = 0; + myFrontCulling.ChangeCullingMode() = TelCullBack; + myFrontCulling.ChangeEdge() = 0; } // ======================================================================= diff --git a/src/OpenGl/OpenGl_Workspace.hxx b/src/OpenGl/OpenGl_Workspace.hxx index 4a40ebcde4..7f7b0e4214 100644 --- a/src/OpenGl/OpenGl_Workspace.hxx +++ b/src/OpenGl/OpenGl_Workspace.hxx @@ -51,6 +51,7 @@ #include #include #include +#include #include #include @@ -274,6 +275,24 @@ public: //! @return true if clipping algorithm enabled inline Standard_Boolean IsCullingEnabled() const { return myIsCullingEnabled; } + //! Returns capping algorithm rendering filter. + const Handle(OpenGl_CappingAlgoFilter)& DefaultCappingAlgoFilter() const + { + return myDefaultCappingAlgoFilter; + } + + //! Returns face aspect for none culling mode. + const OpenGl_AspectFace& NoneCulling() const + { + return myNoneCulling; + } + + //! Returns face aspect for front face culling mode. + const OpenGl_AspectFace& FrontCulling() const + { + return myFrontCulling; + } + protected: //! Copy content of Back buffer to the Front buffer @@ -346,6 +365,10 @@ protected: //! @name protected fields unsigned int myFrameCounter; //!< redraw counter, for debugging + Handle(OpenGl_CappingAlgoFilter) myDefaultCappingAlgoFilter; + OpenGl_AspectFace myNoneCulling; + OpenGl_AspectFace myFrontCulling; + protected: //! @name fields related to status Handle(OpenGl_RenderFilter) myRenderFilter;