diff --git a/src/OpenGl/OpenGl_Element.hxx b/src/OpenGl/OpenGl_Element.hxx index ab53b6146e..324aa7db48 100644 --- a/src/OpenGl/OpenGl_Element.hxx +++ b/src/OpenGl/OpenGl_Element.hxx @@ -60,6 +60,9 @@ public: //! Return TRUE if primitive type generates shaded triangulation (to be used in filters). virtual Standard_Boolean IsFillDrawMode() const { return false; } + //! Returns estimated GPU memory usage for holding data without considering overheads and allocation alignment rules. + virtual Standard_Size EstimatedDataSize() const { return 0; } + //! Update parameters of the drawable elements. virtual void SynchronizeAspects() {} diff --git a/src/OpenGl/OpenGl_FrameStats.cxx b/src/OpenGl/OpenGl_FrameStats.cxx index 27b7916c0d..b34eb69bbd 100644 --- a/src/OpenGl/OpenGl_FrameStats.cxx +++ b/src/OpenGl/OpenGl_FrameStats.cxx @@ -207,11 +207,7 @@ void OpenGl_FrameStats::updateStructures (Standard_Integer theViewId, const OpenGl_Group* aGroup = aGroupIter.Value(); for (const OpenGl_ElementNode* aNodeIter = aGroup->FirstNode(); aNodeIter != NULL; aNodeIter = aNodeIter->next) { - if (const OpenGl_PrimitiveArray* aPrim = dynamic_cast (aNodeIter->elem)) - { - myCountersTmp[Graphic3d_FrameStatsCounter_EstimatedBytesGeom] += estimatedDataSize (aPrim->AttributesVbo()); - myCountersTmp[Graphic3d_FrameStatsCounter_EstimatedBytesGeom] += estimatedDataSize (aPrim->IndexVbo()); - } + myCountersTmp[Graphic3d_FrameStatsCounter_EstimatedBytesGeom] += aNodeIter->elem->EstimatedDataSize(); } } } @@ -229,15 +225,13 @@ void OpenGl_FrameStats::updateStructures (Standard_Integer theViewId, const OpenGl_Group* aGroup = aGroupIter.Value(); for (const OpenGl_ElementNode* aNodeIter = aGroup->FirstNode(); aNodeIter != NULL; aNodeIter = aNodeIter->next) { + if (theToCountMem) + { + myCountersTmp[Graphic3d_FrameStatsCounter_EstimatedBytesGeom] += aNodeIter->elem->EstimatedDataSize(); + } if (const OpenGl_PrimitiveArray* aPrim = dynamic_cast (aNodeIter->elem)) { ++myCountersTmp[Graphic3d_FrameStatsCounter_NbElemsNotCulled]; - if (theToCountMem) - { - myCountersTmp[Graphic3d_FrameStatsCounter_EstimatedBytesGeom] += estimatedDataSize (aPrim->AttributesVbo()); - myCountersTmp[Graphic3d_FrameStatsCounter_EstimatedBytesGeom] += estimatedDataSize (aPrim->IndexVbo()); - } - if (aPrim->IsFillDrawMode()) { ++myCountersTmp[Graphic3d_FrameStatsCounter_NbElemsFillNotCulled]; diff --git a/src/OpenGl/OpenGl_PrimitiveArray.cxx b/src/OpenGl/OpenGl_PrimitiveArray.cxx index d7ec29ffc9..8cda04ecb1 100644 --- a/src/OpenGl/OpenGl_PrimitiveArray.cxx +++ b/src/OpenGl/OpenGl_PrimitiveArray.cxx @@ -758,6 +758,24 @@ void OpenGl_PrimitiveArray::Release (OpenGl_Context* theContext) } } +// ======================================================================= +// function : EstimatedDataSize +// purpose : +// ======================================================================= +Standard_Size OpenGl_PrimitiveArray::EstimatedDataSize() const +{ + Standard_Size aSize = 0; + if (!myVboAttribs.IsNull()) + { + aSize += myVboAttribs->EstimatedDataSize(); + } + if (!myVboIndices.IsNull()) + { + aSize += myVboIndices->EstimatedDataSize(); + } + return aSize; +} + // ======================================================================= // function : Render // purpose : diff --git a/src/OpenGl/OpenGl_PrimitiveArray.hxx b/src/OpenGl/OpenGl_PrimitiveArray.hxx index 7d0c178f03..6947e63cf5 100644 --- a/src/OpenGl/OpenGl_PrimitiveArray.hxx +++ b/src/OpenGl/OpenGl_PrimitiveArray.hxx @@ -58,6 +58,9 @@ public: //! Release OpenGL resources (VBOs) Standard_EXPORT virtual void Release (OpenGl_Context* theContext) Standard_OVERRIDE; + //! Returns estimated GPU memory usage for holding data without considering overheads and allocation alignment rules. + Standard_EXPORT virtual Standard_Size EstimatedDataSize() const Standard_OVERRIDE; + //! Return true if VBOs initialization has been performed. //! VBO initialization is performed during first Render() call. //! Notice that this flag does not indicate VBOs validity. diff --git a/src/OpenGl/OpenGl_Text.cxx b/src/OpenGl/OpenGl_Text.cxx index d2c0cc6eec..4692b5e84f 100644 --- a/src/OpenGl/OpenGl_Text.cxx +++ b/src/OpenGl/OpenGl_Text.cxx @@ -206,6 +206,31 @@ void OpenGl_Text::Release (OpenGl_Context* theCtx) } } +// ======================================================================= +// function : EstimatedDataSize +// purpose : +// ======================================================================= +Standard_Size OpenGl_Text::EstimatedDataSize() const +{ + Standard_Size aSize = 0; + for (Standard_Integer anIter = myVertsVbo.Lower(); anIter <= myVertsVbo.Upper(); ++anIter) + { + if (const Handle(OpenGl_VertexBuffer)& aVerts = myVertsVbo.Value (anIter)) + { + aSize += aVerts->EstimatedDataSize(); + } + if (const Handle(OpenGl_VertexBuffer)& aTCrds = myTCrdsVbo.Value (anIter)) + { + aSize += aTCrds->EstimatedDataSize(); + } + } + if (!myBndVertsVbo.IsNull()) + { + aSize += myBndVertsVbo->EstimatedDataSize(); + } + return aSize; +} + // ======================================================================= // function : StringSize // purpose : diff --git a/src/OpenGl/OpenGl_Text.hxx b/src/OpenGl/OpenGl_Text.hxx index 01eab00336..a8a3cb3d31 100755 --- a/src/OpenGl/OpenGl_Text.hxx +++ b/src/OpenGl/OpenGl_Text.hxx @@ -68,6 +68,9 @@ public: Standard_EXPORT virtual void Render (const Handle(OpenGl_Workspace)& theWorkspace) const Standard_OVERRIDE; Standard_EXPORT virtual void Release (OpenGl_Context* theContext) Standard_OVERRIDE; + //! Returns estimated GPU memory usage for holding data without considering overheads and allocation alignment rules. + Standard_EXPORT virtual Standard_Size EstimatedDataSize() const Standard_OVERRIDE; + public: //! @name methods for compatibility with layers //! Empty constructor