mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
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.
This commit is contained in:
parent
b4d4dbe8b4
commit
f8ae360566
@ -24,14 +24,8 @@
|
|||||||
IMPLEMENT_STANDARD_HANDLE(OpenGl_CappingAlgoFilter, OpenGl_RenderFilter)
|
IMPLEMENT_STANDARD_HANDLE(OpenGl_CappingAlgoFilter, OpenGl_RenderFilter)
|
||||||
IMPLEMENT_STANDARD_RTTIEXT(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
|
namespace
|
||||||
{
|
{
|
||||||
|
|
||||||
#if !defined(GL_ES_VERSION_2_0)
|
#if !defined(GL_ES_VERSION_2_0)
|
||||||
static const GLint THE_FILLPRIM_FROM = GL_TRIANGLES;
|
static const GLint THE_FILLPRIM_FROM = GL_TRIANGLES;
|
||||||
static const GLint THE_FILLPRIM_TO = GL_POLYGON;
|
static const GLint THE_FILLPRIM_TO = GL_POLYGON;
|
||||||
@ -70,16 +64,12 @@ void OpenGl_CappingAlgo::RenderCapping (const Handle(OpenGl_Workspace)& theWork
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// init internal data
|
|
||||||
Init();
|
|
||||||
|
|
||||||
// remember current aspect face defined in workspace
|
// remember current aspect face defined in workspace
|
||||||
const OpenGl_AspectFace* aFaceAsp = theWorkspace->AspectFace (Standard_False);
|
const OpenGl_AspectFace* aFaceAsp = theWorkspace->AspectFace (Standard_False);
|
||||||
|
|
||||||
// replace primitive groups rendering filter
|
// replace primitive groups rendering filter
|
||||||
static Handle(OpenGl_CappingAlgoFilter) aCappingFilter = new OpenGl_CappingAlgoFilter();
|
|
||||||
Handle(OpenGl_RenderFilter) aRenderFilter = theWorkspace->GetRenderFilter();
|
Handle(OpenGl_RenderFilter) aRenderFilter = theWorkspace->GetRenderFilter();
|
||||||
theWorkspace->SetRenderFilter (aCappingFilter);
|
theWorkspace->SetRenderFilter (theWorkspace->DefaultCappingAlgoFilter());
|
||||||
|
|
||||||
// prepare for rendering the clip planes
|
// prepare for rendering the clip planes
|
||||||
glEnable (GL_STENCIL_TEST);
|
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);
|
glColorMask (GL_FALSE, GL_FALSE, GL_FALSE, GL_FALSE);
|
||||||
|
|
||||||
// override aspects, disable culling
|
// override aspects, disable culling
|
||||||
theWorkspace->SetAspectFace (NoneCulling());
|
theWorkspace->SetAspectFace (&theWorkspace->NoneCulling());
|
||||||
theWorkspace->AspectFace (Standard_True);
|
theWorkspace->AspectFace (Standard_True);
|
||||||
|
|
||||||
// evaluate number of pair faces
|
// evaluate number of pair faces
|
||||||
@ -131,7 +121,7 @@ void OpenGl_CappingAlgo::RenderCapping (const Handle(OpenGl_Workspace)& theWork
|
|||||||
}
|
}
|
||||||
|
|
||||||
// override material, cull back faces
|
// override material, cull back faces
|
||||||
theWorkspace->SetAspectFace (FrontCulling());
|
theWorkspace->SetAspectFace (&theWorkspace->FrontCulling());
|
||||||
theWorkspace->AspectFace (Standard_True);
|
theWorkspace->AspectFace (Standard_True);
|
||||||
|
|
||||||
// enable all clip plane except the rendered one
|
// 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);
|
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
|
// function : CanRender
|
||||||
// purpose :
|
// purpose :
|
||||||
|
@ -45,27 +45,6 @@ public:
|
|||||||
//! @param thePlane [in] the graphical plane, for which the capping surface is rendered.
|
//! @param thePlane [in] the graphical plane, for which the capping surface is rendered.
|
||||||
Standard_EXPORT static void RenderPlane (const Handle(OpenGl_Workspace)& theWorkspace,
|
Standard_EXPORT static void RenderPlane (const Handle(OpenGl_Workspace)& theWorkspace,
|
||||||
const Handle(Graphic3d_ClipPlane)& thePlane);
|
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.
|
//! Graphical capping rendering algorithm filter.
|
||||||
|
@ -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,
|
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
|
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)
|
IMPLEMENT_STANDARD_HANDLE (OpenGl_CappingPlaneResource, OpenGl_Resource)
|
||||||
|
@ -40,6 +40,8 @@ struct OpenGl_LAYER_PROP
|
|||||||
|
|
||||||
/*----------------------------------------------------------------------*/
|
/*----------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
namespace
|
||||||
|
{
|
||||||
static const TEL_COLOUR myDefaultColor = {{ 1.F, 1.F, 1.F, 1.F }};
|
static const TEL_COLOUR myDefaultColor = {{ 1.F, 1.F, 1.F, 1.F }};
|
||||||
static const CALL_DEF_CONTEXTTEXT myDefaultContextText =
|
static const CALL_DEF_CONTEXTTEXT myDefaultContextText =
|
||||||
{
|
{
|
||||||
@ -59,6 +61,7 @@ static const CALL_DEF_CONTEXTTEXT myDefaultContextText =
|
|||||||
|
|
||||||
static Standard_Boolean TheLayerIsOpen = Standard_False;
|
static Standard_Boolean TheLayerIsOpen = Standard_False;
|
||||||
static OpenGl_LAYER_PROP TheLayerProp;
|
static OpenGl_LAYER_PROP TheLayerProp;
|
||||||
|
}
|
||||||
|
|
||||||
/*----------------------------------------------------------------------*/
|
/*----------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
@ -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)
|
void OpenGl_Transposemat3 (OpenGl_Matrix *c, const OpenGl_Matrix *a)
|
||||||
{
|
{
|
||||||
Tint row, col;
|
Tint row, col;
|
||||||
|
@ -24,16 +24,6 @@ struct OpenGl_Matrix
|
|||||||
DEFINE_STANDARD_ALLOC
|
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);
|
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
|
#endif //OpenGl_Matrix_Header
|
||||||
|
@ -35,6 +35,8 @@ IMPLEMENT_STANDARD_RTTIEXT(OpenGl_View,MMgt_TShared)
|
|||||||
|
|
||||||
/*----------------------------------------------------------------------*/
|
/*----------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
namespace
|
||||||
|
{
|
||||||
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 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_ZCLIP myDefaultZClip = { { Standard_True, 0.F }, { Standard_True, 1.F } };
|
||||||
|
|
||||||
@ -47,6 +49,7 @@ static const GLdouble THE_IDENTITY_MATRIX[4][4] =
|
|||||||
{0.0, 0.0, 1.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, 1.0}
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
|
||||||
/*----------------------------------------------------------------------*/
|
/*----------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
@ -999,7 +999,7 @@ const TCollection_AsciiString OpenGl_View::ShaderSource::EMPTY_PREFIX;
|
|||||||
// =======================================================================
|
// =======================================================================
|
||||||
TCollection_AsciiString OpenGl_View::ShaderSource::Source() const
|
TCollection_AsciiString OpenGl_View::ShaderSource::Source() const
|
||||||
{
|
{
|
||||||
static const TCollection_AsciiString aVersion = "#version 140";
|
const TCollection_AsciiString aVersion = "#version 140";
|
||||||
|
|
||||||
if (myPrefix.IsEmpty())
|
if (myPrefix.IsEmpty())
|
||||||
{
|
{
|
||||||
|
@ -36,7 +36,6 @@ IMPLEMENT_STANDARD_RTTIEXT(OpenGl_Window,MMgt_TShared)
|
|||||||
|
|
||||||
namespace
|
namespace
|
||||||
{
|
{
|
||||||
static const TEL_COLOUR THE_DEFAULT_BG_COLOR = { { 0.F, 0.F, 0.F, 1.F } };
|
|
||||||
|
|
||||||
#if defined(HAVE_EGL) || defined(__ANDROID__)
|
#if defined(HAVE_EGL) || defined(__ANDROID__)
|
||||||
//
|
//
|
||||||
@ -141,12 +140,12 @@ OpenGl_Window::OpenGl_Window (const Handle(OpenGl_GraphicDriver)& theDriver,
|
|||||||
myOwnGContext (theGContext == 0),
|
myOwnGContext (theGContext == 0),
|
||||||
myWidth (theCWindow.dx),
|
myWidth (theCWindow.dx),
|
||||||
myHeight (theCWindow.dy),
|
myHeight (theCWindow.dy),
|
||||||
myBgColor (THE_DEFAULT_BG_COLOR),
|
|
||||||
mySwapInterval (theCaps->swapInterval)
|
mySwapInterval (theCaps->swapInterval)
|
||||||
{
|
{
|
||||||
myBgColor.rgb[0] = theCWindow.Background.r;
|
myBgColor.rgb[0] = theCWindow.Background.r;
|
||||||
myBgColor.rgb[1] = theCWindow.Background.g;
|
myBgColor.rgb[1] = theCWindow.Background.g;
|
||||||
myBgColor.rgb[2] = theCWindow.Background.b;
|
myBgColor.rgb[2] = theCWindow.Background.b;
|
||||||
|
myBgColor.rgb[3] = 1.0f;
|
||||||
|
|
||||||
Standard_Boolean isCoreProfile = Standard_False;
|
Standard_Boolean isCoreProfile = Standard_False;
|
||||||
|
|
||||||
|
@ -49,11 +49,6 @@
|
|||||||
#include <OpenGL/CGLRenderers.h>
|
#include <OpenGL/CGLRenderers.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace
|
|
||||||
{
|
|
||||||
static const TEL_COLOUR THE_DEFAULT_BG_COLOR = { { 0.F, 0.F, 0.F, 1.F } };
|
|
||||||
}
|
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : OpenGl_Window
|
// function : OpenGl_Window
|
||||||
// purpose :
|
// purpose :
|
||||||
@ -74,12 +69,12 @@ OpenGl_Window::OpenGl_Window (const Handle(OpenGl_GraphicDriver)& theDriver,
|
|||||||
#endif
|
#endif
|
||||||
myWidth (theCWindow.dx),
|
myWidth (theCWindow.dx),
|
||||||
myHeight (theCWindow.dy),
|
myHeight (theCWindow.dy),
|
||||||
myBgColor (THE_DEFAULT_BG_COLOR),
|
|
||||||
mySwapInterval (theCaps->swapInterval)
|
mySwapInterval (theCaps->swapInterval)
|
||||||
{
|
{
|
||||||
myBgColor.rgb[0] = theCWindow.Background.r;
|
myBgColor.rgb[0] = theCWindow.Background.r;
|
||||||
myBgColor.rgb[1] = theCWindow.Background.g;
|
myBgColor.rgb[1] = theCWindow.Background.g;
|
||||||
myBgColor.rgb[2] = theCWindow.Background.b;
|
myBgColor.rgb[2] = theCWindow.Background.b;
|
||||||
|
myBgColor.rgb[3] = 1.0f;
|
||||||
|
|
||||||
#if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
|
#if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
|
||||||
EAGLContext* aGLContext = theGContext;
|
EAGLContext* aGLContext = theGContext;
|
||||||
|
@ -214,6 +214,12 @@ OpenGl_Workspace::OpenGl_Workspace (const Handle(OpenGl_GraphicDriver)& theDrive
|
|||||||
int v;
|
int v;
|
||||||
if (sscanf (anAaEnv, "%d", &v) > 0) myAntiAliasingMode = 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;
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
|
@ -51,6 +51,7 @@
|
|||||||
#include <OpenGl_RenderFilter.hxx>
|
#include <OpenGl_RenderFilter.hxx>
|
||||||
#include <OpenGl_Vec.hxx>
|
#include <OpenGl_Vec.hxx>
|
||||||
#include <OpenGl_LineAttributes.hxx>
|
#include <OpenGl_LineAttributes.hxx>
|
||||||
|
#include <OpenGl_CappingAlgo.hxx>
|
||||||
|
|
||||||
#include <Handle_OpenGl_View.hxx>
|
#include <Handle_OpenGl_View.hxx>
|
||||||
#include <Handle_OpenGl_Texture.hxx>
|
#include <Handle_OpenGl_Texture.hxx>
|
||||||
@ -274,6 +275,24 @@ public:
|
|||||||
//! @return true if clipping algorithm enabled
|
//! @return true if clipping algorithm enabled
|
||||||
inline Standard_Boolean IsCullingEnabled() const { return myIsCullingEnabled; }
|
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:
|
protected:
|
||||||
|
|
||||||
//! Copy content of Back buffer to the Front buffer
|
//! Copy content of Back buffer to the Front buffer
|
||||||
@ -346,6 +365,10 @@ protected: //! @name protected fields
|
|||||||
|
|
||||||
unsigned int myFrameCounter; //!< redraw counter, for debugging
|
unsigned int myFrameCounter; //!< redraw counter, for debugging
|
||||||
|
|
||||||
|
Handle(OpenGl_CappingAlgoFilter) myDefaultCappingAlgoFilter;
|
||||||
|
OpenGl_AspectFace myNoneCulling;
|
||||||
|
OpenGl_AspectFace myFrontCulling;
|
||||||
|
|
||||||
protected: //! @name fields related to status
|
protected: //! @name fields related to status
|
||||||
|
|
||||||
Handle(OpenGl_RenderFilter) myRenderFilter;
|
Handle(OpenGl_RenderFilter) myRenderFilter;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user