1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-06 18:26:22 +03:00

0024590: Crash when processing OpenGl_BndBoxPrs objects

Eliminate TelType enumeration
Cosmetics, warnings
This commit is contained in:
kgv 2014-02-06 11:01:00 +04:00 committed by apn
parent f1a5afa25c
commit 5322131bd1
12 changed files with 65 additions and 133 deletions

View File

@ -68,7 +68,6 @@ OpenGl_PriorityList.hxx
OpenGl_PriorityList.cxx OpenGl_PriorityList.cxx
OpenGl_AVIWriter.hxx OpenGl_AVIWriter.hxx
OpenGl_AVIWriter.cxx OpenGl_AVIWriter.cxx
OpenGl_tsm.hxx
OpenGl_FrameBuffer.hxx OpenGl_FrameBuffer.hxx
OpenGl_FrameBuffer.cxx OpenGl_FrameBuffer.cxx
OpenGl_Texture.cxx OpenGl_Texture.cxx

View File

@ -193,7 +193,7 @@ Standard_Boolean OpenGl_GraphicDriver::GetOpenClDeviceInfo (const Graphic3d_CVie
{ {
return Standard_False; return Standard_False;
} }
return reinterpret_cast<const OpenGl_CView*> (theCView.ptrView)->WS->GetOpenClDeviceInfo (theInfo); return reinterpret_cast<const OpenGl_CView*> (theCView.ptrView)->WS->GetOpenClDeviceInfo (theInfo);
} }
@ -347,7 +347,7 @@ void OpenGl_GraphicDriver::SetStencilTestOptions (const Graphic3d_CGroup& theCGr
{ {
OpenGl_StencilTest* aStencilTest = new OpenGl_StencilTest(); OpenGl_StencilTest* aStencilTest = new OpenGl_StencilTest();
aStencilTest->SetOptions (theIsEnabled); aStencilTest->SetOptions (theIsEnabled);
((OpenGl_Group* )theCGroup.ptrGroup)->AddElement (TelNil, aStencilTest); ((OpenGl_Group* )theCGroup.ptrGroup)->AddElement (aStencilTest);
} }
// ======================================================================= // =======================================================================
@ -375,7 +375,7 @@ void OpenGl_GraphicDriver::Text (const Graphic3d_CGroup& theCGro
aParams.VAlign = theVta; aParams.VAlign = theVta;
const OpenGl_Vec3 aPoint (thePoint.X(), thePoint.Y(), thePoint.Z()); const OpenGl_Vec3 aPoint (thePoint.X(), thePoint.Y(), thePoint.Z());
OpenGl_Text* aText = new OpenGl_Text (theText, aPoint, aParams); OpenGl_Text* aText = new OpenGl_Text (theText, aPoint, aParams);
((OpenGl_Group* )theCGroup.ptrGroup)->AddElement (TelText, aText); ((OpenGl_Group* )theCGroup.ptrGroup)->AddElement (aText);
} }
// ======================================================================= // =======================================================================
@ -589,5 +589,5 @@ void OpenGl_GraphicDriver::SetFlippingOptions (const Graphic3d_CGroup& theCGroup
{ {
OpenGl_Flipper* aFlipper = new OpenGl_Flipper (theRefPlane); OpenGl_Flipper* aFlipper = new OpenGl_Flipper (theRefPlane);
aFlipper->SetOptions (theIsEnabled); aFlipper->SetOptions (theIsEnabled);
((OpenGl_Group* )theCGroup.ptrGroup)->AddElement (TelNil, aFlipper); ((OpenGl_Group* )theCGroup.ptrGroup)->AddElement (aFlipper);
} }

View File

@ -69,7 +69,7 @@ void OpenGl_GraphicDriver::PrimitiveArray( const Graphic3d_CGroup& ACGroup,
if ( ACGroup.ptrGroup && parray ) if ( ACGroup.ptrGroup && parray )
{ {
OpenGl_PrimitiveArray *aparray = new OpenGl_PrimitiveArray( (CALL_DEF_PARRAY *) parray ); OpenGl_PrimitiveArray *aparray = new OpenGl_PrimitiveArray( (CALL_DEF_PARRAY *) parray );
((OpenGl_Group *)ACGroup.ptrGroup)->AddElement( TelParray, aparray ); ((OpenGl_Group *)ACGroup.ptrGroup)->AddElement (aparray);
} }
} }
@ -82,7 +82,7 @@ void OpenGl_GraphicDriver::UserDraw (const Graphic3d_CGroup& theCGroup,
OpenGl_Element* aUserDraw = myUserDrawCallback(&theUserDraw); OpenGl_Element* aUserDraw = myUserDrawCallback(&theUserDraw);
if (aUserDraw != NULL) if (aUserDraw != NULL)
{ {
((OpenGl_Group* )theCGroup.ptrGroup)->AddElement (TelUserdraw, aUserDraw); ((OpenGl_Group* )theCGroup.ptrGroup)->AddElement (aUserDraw);
} }
} }
} }

View File

@ -73,7 +73,7 @@ void OpenGl_Group::SetAspectLine (const CALL_DEF_CONTEXTLINE& theAspect,
{ {
OpenGl_AspectLine* anAspectLine = new OpenGl_AspectLine(); OpenGl_AspectLine* anAspectLine = new OpenGl_AspectLine();
anAspectLine->SetAspect (theAspect); anAspectLine->SetAspect (theAspect);
AddElement (TelNil/*TelAspectLine*/, anAspectLine); AddElement (anAspectLine);
} }
} }
@ -96,7 +96,7 @@ void OpenGl_Group::SetAspectFace (const CALL_DEF_CONTEXTFILLAREA& theAspect,
{ {
OpenGl_AspectFace* anAspectFace = new OpenGl_AspectFace(); OpenGl_AspectFace* anAspectFace = new OpenGl_AspectFace();
anAspectFace->SetAspect (theAspect); anAspectFace->SetAspect (theAspect);
AddElement (TelNil/*TelAspectFace*/, anAspectFace); AddElement (anAspectFace);
} }
#ifdef HAVE_OPENCL #ifdef HAVE_OPENCL
@ -131,7 +131,7 @@ void OpenGl_Group::SetAspectMarker (const CALL_DEF_CONTEXTMARKER& theAspect,
{ {
OpenGl_AspectMarker* anAspectMarker = new OpenGl_AspectMarker(); OpenGl_AspectMarker* anAspectMarker = new OpenGl_AspectMarker();
anAspectMarker->SetAspect (theAspect); anAspectMarker->SetAspect (theAspect);
AddElement (TelNil/*TelAspectMarker*/, anAspectMarker); AddElement (anAspectMarker);
} }
} }
@ -154,7 +154,7 @@ void OpenGl_Group::SetAspectText (const CALL_DEF_CONTEXTTEXT& theAspect,
{ {
OpenGl_AspectText* anAspectText = new OpenGl_AspectText(); OpenGl_AspectText* anAspectText = new OpenGl_AspectText();
anAspectText->SetAspect (theAspect); anAspectText->SetAspect (theAspect);
AddElement ( TelNil/*TelAspectText*/, anAspectText); AddElement (anAspectText);
} }
} }
@ -162,11 +162,10 @@ void OpenGl_Group::SetAspectText (const CALL_DEF_CONTEXTTEXT& theAspect,
// function : AddElement // function : AddElement
// purpose : // purpose :
// ======================================================================= // =======================================================================
void OpenGl_Group::AddElement (const TelType theType, OpenGl_Element *theElem) void OpenGl_Group::AddElement (OpenGl_Element* theElem)
{ {
OpenGl_ElementNode *aNode = new OpenGl_ElementNode(); OpenGl_ElementNode *aNode = new OpenGl_ElementNode();
aNode->type = theType;
aNode->elem = theElem; aNode->elem = theElem;
aNode->next = NULL; aNode->next = NULL;
(myLast? myLast->next : myFirst) = aNode; (myLast? myLast->next : myFirst) = aNode;
@ -194,7 +193,6 @@ void OpenGl_Group::AddElement (const TelType theType, OpenGl_Element *theElem)
void OpenGl_Group::Render (const Handle(OpenGl_Workspace)& theWorkspace) const void OpenGl_Group::Render (const Handle(OpenGl_Workspace)& theWorkspace) const
{ {
// Is rendering in ADD or IMMEDIATE mode? // Is rendering in ADD or IMMEDIATE mode?
const Standard_Boolean isImmediate = (theWorkspace->NamedStatus & (OPENGL_NS_ADD | OPENGL_NS_IMMEDIATE)) != 0;
const Handle(OpenGl_RenderFilter)& aFilter = theWorkspace->GetRenderFilter(); const Handle(OpenGl_RenderFilter)& aFilter = theWorkspace->GetRenderFilter();
// Setup aspects // Setup aspects
@ -210,27 +208,7 @@ void OpenGl_Group::Render (const Handle(OpenGl_Workspace)& theWorkspace) const
// Render group elements // Render group elements
for (OpenGl_ElementNode* aNodeIter = myFirst; aNodeIter != NULL; aNodeIter = aNodeIter->next) for (OpenGl_ElementNode* aNodeIter = myFirst; aNodeIter != NULL; aNodeIter = aNodeIter->next)
{ {
switch (aNodeIter->type) aNodeIter->elem->RenderFiltered (theWorkspace, aFilter);
{
case TelMarker:
case TelMarkerSet:
case TelText:
{
glDisable (GL_LIGHTING);
if (isImmediate)
{
glDepthMask (GL_FALSE);
}
aNodeIter->elem->RenderFiltered (theWorkspace, aFilter);
break;
}
default:
{
aNodeIter->elem->RenderFiltered (theWorkspace, aFilter);
break;
}
}
} }
// Restore aspects // Restore aspects

View File

@ -26,18 +26,15 @@
#include <OpenGl_AspectMarker.hxx> #include <OpenGl_AspectMarker.hxx>
#include <OpenGl_AspectText.hxx> #include <OpenGl_AspectText.hxx>
#include <OpenGl_tsm.hxx>
class OpenGl_Group; class OpenGl_Group;
class OpenGl_Structure; class OpenGl_Structure;
typedef NCollection_List<const OpenGl_Group* > OpenGl_ListOfGroup; typedef NCollection_List<const OpenGl_Group* > OpenGl_ListOfGroup;
struct OpenGl_ElementNode struct OpenGl_ElementNode
{ {
TelType type; OpenGl_Element* elem;
OpenGl_Element *elem; OpenGl_ElementNode* next;
OpenGl_ElementNode *next;
DEFINE_STANDARD_ALLOC DEFINE_STANDARD_ALLOC
}; };
@ -56,7 +53,7 @@ public:
void SetAspectMarker (const CALL_DEF_CONTEXTMARKER& theAspect, const Standard_Boolean IsGlobal = Standard_True); void SetAspectMarker (const CALL_DEF_CONTEXTMARKER& theAspect, const Standard_Boolean IsGlobal = Standard_True);
void SetAspectText (const CALL_DEF_CONTEXTTEXT& theAspect, const Standard_Boolean IsGlobal = Standard_True); void SetAspectText (const CALL_DEF_CONTEXTTEXT& theAspect, const Standard_Boolean IsGlobal = Standard_True);
void AddElement (const TelType, OpenGl_Element * ); void AddElement (OpenGl_Element* theElem);
virtual void Render (const Handle(OpenGl_Workspace)& theWorkspace) const; virtual void Render (const Handle(OpenGl_Workspace)& theWorkspace) const;
virtual void Release (const Handle(OpenGl_Context)& theGlCtx); virtual void Release (const Handle(OpenGl_Context)& theGlCtx);
@ -90,7 +87,7 @@ protected:
OpenGl_ElementNode* myFirst; OpenGl_ElementNode* myFirst;
OpenGl_ElementNode* myLast; OpenGl_ElementNode* myLast;
#ifdef HAVE_OPENCL #ifdef HAVE_OPENCL
const OpenGl_Structure* myAncestorStructure; const OpenGl_Structure* myAncestorStructure;
Standard_Boolean myIsRaytracable; Standard_Boolean myIsRaytracable;

View File

@ -163,7 +163,7 @@ struct OpenGL_BVHParallelBuilder
{ {
OpenGl_TriangleSet* aTriangleSet = dynamic_cast<OpenGl_TriangleSet*> ( OpenGl_TriangleSet* aTriangleSet = dynamic_cast<OpenGl_TriangleSet*> (
Set->Objects().ChangeValue (static_cast<Standard_Integer> (anObjectIdx)).operator->()); Set->Objects().ChangeValue (static_cast<Standard_Integer> (anObjectIdx)).operator->());
if (aTriangleSet != NULL) if (aTriangleSet != NULL)
{ {
aTriangleSet->BVH(); aTriangleSet->BVH();
@ -183,7 +183,7 @@ Standard_Boolean OpenGl_RaytraceGeometry::ProcessAcceleration()
#ifdef BVH_PRINT_INFO #ifdef BVH_PRINT_INFO
OSD_Timer aTimer; OSD_Timer aTimer;
#endif #endif
MarkDirty(); // force BVH rebuilding MarkDirty(); // force BVH rebuilding
#ifdef BVH_PRINT_INFO #ifdef BVH_PRINT_INFO
@ -197,7 +197,7 @@ Standard_Boolean OpenGl_RaytraceGeometry::ProcessAcceleration()
tbb::parallel_for (tbb::blocked_range<size_t> (0, Size()), tbb::parallel_for (tbb::blocked_range<size_t> (0, Size()),
OpenGL_BVHParallelBuilder (this)); OpenGL_BVHParallelBuilder (this));
#endif #endif
for (Standard_Integer anObjectIdx = 0; anObjectIdx < Size(); ++anObjectIdx) for (Standard_Integer anObjectIdx = 0; anObjectIdx < Size(); ++anObjectIdx)
{ {
OpenGl_TriangleSet* aTriangleSet = dynamic_cast<OpenGl_TriangleSet*> ( OpenGl_TriangleSet* aTriangleSet = dynamic_cast<OpenGl_TriangleSet*> (
@ -205,7 +205,7 @@ Standard_Boolean OpenGl_RaytraceGeometry::ProcessAcceleration()
Standard_ASSERT_RETURN (aTriangleSet != NULL, Standard_ASSERT_RETURN (aTriangleSet != NULL,
"Error! Failed to get triangulation of OpenGL element", Standard_False); "Error! Failed to get triangulation of OpenGL element", Standard_False);
Standard_ASSERT_RETURN (!aTriangleSet->BVH().IsNull(), Standard_ASSERT_RETURN (!aTriangleSet->BVH().IsNull(),
"Error! Failed to update bottom-level BVH of OpenGL element", Standard_False); "Error! Failed to update bottom-level BVH of OpenGL element", Standard_False);
} }
@ -323,7 +323,7 @@ OpenGl_TriangleSet* OpenGl_RaytraceGeometry::TriangleSet (Standard_Integer theNo
if (aBVH->NodeInfoBuffer().at (theNodeIdx).x() > myObjects.Size()) if (aBVH->NodeInfoBuffer().at (theNodeIdx).x() > myObjects.Size())
return NULL; return NULL;
return dynamic_cast<OpenGl_TriangleSet*> (myObjects.ChangeValue ( return dynamic_cast<OpenGl_TriangleSet*> (myObjects.ChangeValue (
aBVH->NodeInfoBuffer().at (theNodeIdx).x() - 1).operator->()); aBVH->NodeInfoBuffer().at (theNodeIdx).x() - 1).operator->());
} }
@ -336,12 +336,9 @@ namespace OpenGl_Raytrace
// ======================================================================= // =======================================================================
Standard_Boolean IsRaytracedElement (const OpenGl_ElementNode* theNode) Standard_Boolean IsRaytracedElement (const OpenGl_ElementNode* theNode)
{ {
if (TelParray == theNode->type) OpenGl_PrimitiveArray* anArray = dynamic_cast< OpenGl_PrimitiveArray* > (theNode->elem);
{ return anArray != NULL
OpenGl_PrimitiveArray* anArray = dynamic_cast< OpenGl_PrimitiveArray* > (theNode->elem); && anArray->PArray()->type >= TelPolygonsArrayType;
return anArray->PArray()->type >= TelPolygonsArrayType;
}
return Standard_False;
} }
// ======================================================================= // =======================================================================

View File

@ -283,7 +283,7 @@ void OpenGl_Structure::SetHighlightBox (const Handle(OpenGl_Context)& theGlCtx,
myHighlightBox->SetAspectLine (aContextLine); myHighlightBox->SetAspectLine (aContextLine);
OpenGl_BndBoxPrs* aBndBoxPrs = new OpenGl_BndBoxPrs (theBoundBox); OpenGl_BndBoxPrs* aBndBoxPrs = new OpenGl_BndBoxPrs (theBoundBox);
myHighlightBox->AddElement (TelParray, aBndBoxPrs); myHighlightBox->AddElement (aBndBoxPrs);
} }
// ======================================================================= // =======================================================================
@ -359,7 +359,7 @@ void OpenGl_Structure::RegisterAncestorStructure (const OpenGl_Structure* theStr
if (anIt.Value() == theStructure) if (anIt.Value() == theStructure)
{ {
return; return;
} }
} }
myAncestorStructures.Append (theStructure); myAncestorStructures.Append (theStructure);
@ -377,7 +377,7 @@ void OpenGl_Structure::UnregisterAncestorStructure (const OpenGl_Structure* theS
{ {
myAncestorStructures.Remove (anIt); myAncestorStructures.Remove (anIt);
return; return;
} }
} }
} }
@ -397,7 +397,7 @@ void OpenGl_Structure::UnregisterFromAncestorStructure() const
{ {
anAncestor->myConnected.Remove (anIts); anAncestor->myConnected.Remove (anIts);
return; return;
} }
} }
} }
} }
@ -564,7 +564,7 @@ void OpenGl_Structure::Clear (const Handle(OpenGl_Context)& theGlCtx)
#ifdef HAVE_OPENCL #ifdef HAVE_OPENCL
aRaytracableGroupDeleted |= anIter.Value()->IsRaytracable(); aRaytracableGroupDeleted |= anIter.Value()->IsRaytracable();
#endif #endif
// Delete objects // Delete objects
OpenGl_Element::Destroy (theGlCtx, const_cast<OpenGl_Group*& > (anIter.ChangeValue())); OpenGl_Element::Destroy (theGlCtx, const_cast<OpenGl_Group*& > (anIter.ChangeValue()));
} }

View File

@ -394,10 +394,10 @@ void OpenGl_Text::Render (const Handle(OpenGl_Workspace)& theWorkspace) const
aProgram->BindWithVariables (aCtx); aProgram->BindWithVariables (aCtx);
const OpenGl_MaterialState* aMaterialState = aCtx->ShaderManager()->MaterialState (aProgram); const OpenGl_MaterialState* aMaterialState = aCtx->ShaderManager()->MaterialState (aProgram);
if (aMaterialState == NULL || aMaterialState->Aspect() != aTextAspect) if (aMaterialState == NULL || aMaterialState->Aspect() != aTextAspect)
aCtx->ShaderManager()->UpdateMaterialStateTo (aProgram, aTextAspect); aCtx->ShaderManager()->UpdateMaterialStateTo (aProgram, aTextAspect);
aCtx->ShaderManager()->PushState (aProgram); aCtx->ShaderManager()->PushState (aProgram);
} }
else else
@ -709,6 +709,7 @@ void OpenGl_Text::render (const Handle(OpenGl_PrinterContext)& thePrintCtx,
// push enabled flags to the stack // push enabled flags to the stack
glPushAttrib (GL_ENABLE_BIT); glPushAttrib (GL_ENABLE_BIT);
glDisable (GL_LIGHTING);
// setup depth test // setup depth test
if (!myIs2d if (!myIs2d

View File

@ -136,20 +136,16 @@ public:
private: private:
//! Creates new texture format. //! Creates new texture format.
OpenGl_TextureFormat (const GLint theChannels, const GLint theInternal) OpenGl_TextureFormat (const GLint theChannels,
: myChannels (theChannels), const GLint theInternal)
myInternal (theInternal) : myInternal (theInternal),
{ myChannels (theChannels) {}
//
}
private: private:
//! OpenGL internal format of the pixel data. GLint myInternal; //!< OpenGL internal format of the pixel data
GLint myInternal; GLint myChannels; //!< Number of channels for each pixel (from 1 to 4)
//! Number of channels for each pixel (from 1 to 4).
GLint myChannels;
}; };
//! Texture resource. //! Texture resource.

View File

@ -44,8 +44,6 @@
#include <NCollection_Sequence.hxx> #include <NCollection_Sequence.hxx>
#include <OpenGl_tsm.hxx>
#include <OpenGl_AspectFace.hxx> #include <OpenGl_AspectFace.hxx>
#include <OpenGl_Display.hxx> #include <OpenGl_Display.hxx>
#include <OpenGl_Matrix.hxx> #include <OpenGl_Matrix.hxx>
@ -211,14 +209,14 @@ public:
//! @param theFilter [in] the filter instance. //! @param theFilter [in] the filter instance.
inline void SetRenderFilter (const Handle(OpenGl_RenderFilter)& theFilter) inline void SetRenderFilter (const Handle(OpenGl_RenderFilter)& theFilter)
{ {
myRenderFilter = theFilter; myRenderFilter = theFilter;
} }
//! Get rendering filter. //! Get rendering filter.
//! @return filter instance. //! @return filter instance.
inline const Handle(OpenGl_RenderFilter)& GetRenderFilter() const inline const Handle(OpenGl_RenderFilter)& GetRenderFilter() const
{ {
return myRenderFilter; return myRenderFilter;
} }
//! @return applied view matrix. //! @return applied view matrix.
@ -275,7 +273,7 @@ protected: //! @name methods related to ray-tracing
//! Updates environment map for ray-tracing. //! Updates environment map for ray-tracing.
Standard_Boolean UpdateRaytraceEnvironmentMap(); Standard_Boolean UpdateRaytraceEnvironmentMap();
//! Adds OpenGL structure to ray-traced scene geometry. //! Adds OpenGL structure to ray-traced scene geometry.
Standard_Boolean AddRaytraceStructure (const OpenGl_Structure* theStructure, Standard_Boolean AddRaytraceStructure (const OpenGl_Structure* theStructure,
const Standard_ShortReal* theTransform, std::set<const OpenGl_Structure*>& theElements); const Standard_ShortReal* theTransform, std::set<const OpenGl_Structure*>& theElements);
@ -314,7 +312,7 @@ protected: //! @name methods related to ray-tracing
//! Initializes OpenCL resources. //! Initializes OpenCL resources.
Standard_Boolean InitOpenCL(); Standard_Boolean InitOpenCL();
//! Releases OpenCL resources. //! Releases OpenCL resources.
void ReleaseOpenCL(); void ReleaseOpenCL();
@ -353,7 +351,7 @@ protected: //! @name fields related to ray-tracing
Standard_Boolean myIsRaytraceDataValid; Standard_Boolean myIsRaytraceDataValid;
//! Is geometry data musty be updated? //! Is geometry data musty be updated?
Standard_Boolean myToUpdateRaytraceData; Standard_Boolean myToUpdateRaytraceData;
//! 3D scene geometry data for ray-tracing. //! 3D scene geometry data for ray-tracing.
OpenGl_RaytraceGeometry myRaytraceGeometry; OpenGl_RaytraceGeometry myRaytraceGeometry;

View File

@ -406,24 +406,19 @@ Standard_Boolean OpenGl_Workspace::AddRaytraceStructure (const OpenGl_Structure*
// Add OpenGL elements from group (extract primitives arrays and aspects) // Add OpenGL elements from group (extract primitives arrays and aspects)
for (const OpenGl_ElementNode* aNode = anItg.Value()->FirstNode(); aNode != NULL; aNode = aNode->next) for (const OpenGl_ElementNode* aNode = anItg.Value()->FirstNode(); aNode != NULL; aNode = aNode->next)
{ {
if (TelNil == aNode->type) OpenGl_AspectFace* anAspect = dynamic_cast<OpenGl_AspectFace*> (aNode->elem);
if (anAspect != NULL)
{ {
OpenGl_AspectFace* anAspect = dynamic_cast<OpenGl_AspectFace*> (aNode->elem); aMatID = static_cast<Standard_Integer> (myRaytraceGeometry.Materials.size());
if (anAspect != NULL) OpenGl_RaytraceMaterial aMaterial;
{ CreateMaterial (anAspect->IntFront(), aMaterial);
aMatID = static_cast<Standard_Integer> (myRaytraceGeometry.Materials.size());
OpenGl_RaytraceMaterial aMaterial; myRaytraceGeometry.Materials.push_back (aMaterial);
CreateMaterial (anAspect->IntFront(), aMaterial);
myRaytraceGeometry.Materials.push_back (aMaterial);
}
} }
else if (TelParray == aNode->type) else
{ {
OpenGl_PrimitiveArray* aPrimArray = dynamic_cast<OpenGl_PrimitiveArray*> (aNode->elem); OpenGl_PrimitiveArray* aPrimArray = dynamic_cast<OpenGl_PrimitiveArray*> (aNode->elem);
if (aPrimArray != NULL) if (aPrimArray != NULL)
{ {
NCollection_Handle<BVH_Object<Standard_ShortReal, 4> > aSet = NCollection_Handle<BVH_Object<Standard_ShortReal, 4> > aSet =
@ -608,7 +603,7 @@ Standard_Boolean OpenGl_Workspace::AddRaytraceVertexIndices (OpenGl_TriangleSet*
case TelTriangleFansArrayType: case TelTriangleFansArrayType:
return AddRaytraceTriangleFanArray (theSet, theArray, theOffset, theCount, theMatID); return AddRaytraceTriangleFanArray (theSet, theArray, theOffset, theCount, theMatID);
case TelTriangleStripsArrayType: case TelTriangleStripsArrayType:
return AddRaytraceTriangleStripArray (theSet, theArray, theOffset, theCount, theMatID); return AddRaytraceTriangleStripArray (theSet, theArray, theOffset, theCount, theMatID);
case TelQuadrangleStripsArrayType: case TelQuadrangleStripsArrayType:
@ -1242,7 +1237,7 @@ void OpenGl_Workspace::ReleaseOpenCL()
clReleaseProgram (myRaytraceProgram); clReleaseProgram (myRaytraceProgram);
clReleaseCommandQueue (myComputeQueue); clReleaseCommandQueue (myComputeQueue);
clReleaseMemObject (myRaytraceOutputImage); clReleaseMemObject (myRaytraceOutputImage);
clReleaseMemObject (myRaytraceEnvironment); clReleaseMemObject (myRaytraceEnvironment);
clReleaseMemObject (myRaytraceOutputImageAA); clReleaseMemObject (myRaytraceOutputImageAA);
@ -1304,15 +1299,15 @@ Standard_Boolean OpenGl_Workspace::ResizeRaytraceOutputBuffer (const cl_int theS
myGlContext->DelayedRelease (myRaytraceOutputTextureAA); myGlContext->DelayedRelease (myRaytraceOutputTextureAA);
} }
} }
myRaytraceOutputTexture = new OpenGl_Texture(); myRaytraceOutputTexture = new OpenGl_Texture();
myRaytraceOutputTexture->Create (myGlContext); myRaytraceOutputTexture->Create (myGlContext);
myRaytraceOutputTexture->InitRectangle (myGlContext, myRaytraceOutputTexture->InitRectangle (myGlContext,
theSizeX, theSizeY, OpenGl_TextureFormat::Create<GLfloat, 4>()); theSizeX, theSizeY, OpenGl_TextureFormat::Create<GLfloat, 4>());
myRaytraceOutputTextureAA = new OpenGl_Texture(); myRaytraceOutputTextureAA = new OpenGl_Texture();
myRaytraceOutputTextureAA->Create (myGlContext); myRaytraceOutputTextureAA->Create (myGlContext);
myRaytraceOutputTextureAA->InitRectangle (myGlContext, myRaytraceOutputTextureAA->InitRectangle (myGlContext,
theSizeX, theSizeY, OpenGl_TextureFormat::Create<GLfloat, 4>()); theSizeX, theSizeY, OpenGl_TextureFormat::Create<GLfloat, 4>());
@ -1422,7 +1417,7 @@ Standard_Boolean OpenGl_Workspace::WriteRaytraceSceneToDevice()
cl_int anErrorTmp = CL_SUCCESS; cl_int anErrorTmp = CL_SUCCESS;
const NCollection_Handle<BVH_Tree<Standard_ShortReal, 4> >& aBVH = myRaytraceGeometry.BVH(); const NCollection_Handle<BVH_Tree<Standard_ShortReal, 4> >& aBVH = myRaytraceGeometry.BVH();
const size_t aSceneMinPointBufferSize = const size_t aSceneMinPointBufferSize =
aBVH->MinPointBuffer().size() != 0 ? aBVH->MinPointBuffer().size() : 1; aBVH->MinPointBuffer().size() != 0 ? aBVH->MinPointBuffer().size() : 1;
@ -1472,7 +1467,7 @@ Standard_Boolean OpenGl_Workspace::WriteRaytraceSceneToDevice()
aTotalBVHNodesNb += aTriangleSet->BVH()->NodeInfoBuffer().size(); aTotalBVHNodesNb += aTriangleSet->BVH()->NodeInfoBuffer().size();
} }
aTotalBVHNodesNb = aTotalBVHNodesNb > 0 ? aTotalBVHNodesNb : 1; aTotalBVHNodesNb = aTotalBVHNodesNb > 0 ? aTotalBVHNodesNb : 1;
myObjectNodeInfoBuffer = clCreateBuffer (myComputeContext, myObjectNodeInfoBuffer = clCreateBuffer (myComputeContext,
@ -1647,9 +1642,9 @@ Standard_Boolean OpenGl_Workspace::WriteRaytraceSceneToDevice()
#endif #endif
#ifdef RAY_TRACE_PRINT_INFO #ifdef RAY_TRACE_PRINT_INFO
Standard_ShortReal aMemUsed = 0.f; Standard_ShortReal aMemUsed = 0.f;
for (Standard_Integer anElemIdx = 0; anElemIdx < myRaytraceGeometry.Size(); ++anElemIdx) for (Standard_Integer anElemIdx = 0; anElemIdx < myRaytraceGeometry.Size(); ++anElemIdx)
{ {
OpenGl_TriangleSet* aTriangleSet = dynamic_cast<OpenGl_TriangleSet*> ( OpenGl_TriangleSet* aTriangleSet = dynamic_cast<OpenGl_TriangleSet*> (
@ -1669,7 +1664,7 @@ Standard_Boolean OpenGl_Workspace::WriteRaytraceSceneToDevice()
aMemUsed += static_cast<Standard_ShortReal> ( aMemUsed += static_cast<Standard_ShortReal> (
aTriangleSet->BVH()->MaxPointBuffer().size() * sizeof (BVH_Vec4f)); aTriangleSet->BVH()->MaxPointBuffer().size() * sizeof (BVH_Vec4f));
} }
aMemUsed += static_cast<Standard_ShortReal> ( aMemUsed += static_cast<Standard_ShortReal> (
myRaytraceGeometry.BVH()->NodeInfoBuffer().size() * sizeof (BVH_Vec4i)); myRaytraceGeometry.BVH()->NodeInfoBuffer().size() * sizeof (BVH_Vec4i));
aMemUsed += static_cast<Standard_ShortReal> ( aMemUsed += static_cast<Standard_ShortReal> (
@ -1758,7 +1753,7 @@ Standard_Boolean OpenGl_Workspace::RunRaytraceOpenCLKernels (const Graphic3d_CVi
if (anError != CL_SUCCESS) if (anError != CL_SUCCESS)
{ {
const TCollection_ExtendedString aMessage = "Error! Failed to set arguments of ray-tracing kernel!"; const TCollection_ExtendedString aMessage = "Error! Failed to set arguments of ray-tracing kernel!";
myGlContext->PushMessage (GL_DEBUG_SOURCE_APPLICATION_ARB, myGlContext->PushMessage (GL_DEBUG_SOURCE_APPLICATION_ARB,
GL_DEBUG_TYPE_ERROR_ARB, 0, GL_DEBUG_SEVERITY_HIGH_ARB, aMessage); GL_DEBUG_TYPE_ERROR_ARB, 0, GL_DEBUG_SEVERITY_HIGH_ARB, aMessage);

View File

@ -1,29 +0,0 @@
// Copyright (c) 1995-1999 Matra Datavision
// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and / or modify it
// under the terms of the GNU Lesser General Public version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#ifndef OPENGL_TSM_H
#define OPENGL_TSM_H
typedef enum
{
TelNil = 0,
TelMarker,
TelMarkerSet,
TelText,
TelParray,
TelUserdraw,
TelLast
} TelType;
#endif