1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0028907: Coding Rules, OpenGl_GraphicDriver - fix class fields accidentally marked public

This commit is contained in:
kgv 2017-07-10 11:24:29 +03:00 committed by bugmaster
parent b27ab03d09
commit 99cfc27757

View File

@ -204,6 +204,14 @@ public:
DEFINE_STANDARD_RTTIEXT(OpenGl_GraphicDriver,Graphic3d_GraphicDriver) DEFINE_STANDARD_RTTIEXT(OpenGl_GraphicDriver,Graphic3d_GraphicDriver)
public:
//! State counter for OpenGl structures.
OpenGl_StateCounter* GetStateCounter() const { return &myStateCounter; }
//! Returns unique ID for primitive arrays.
Standard_Size GetNextPrimitiveArrayUID() const { return myUIDGenerator.Increment(); }
protected: protected:
Standard_Boolean myIsOwnContext; //!< indicates that shared context has been created within OpenGl_GraphicDriver Standard_Boolean myIsOwnContext; //!< indicates that shared context has been created within OpenGl_GraphicDriver
@ -217,22 +225,10 @@ protected:
NCollection_Map<Handle(OpenGl_View)> myMapOfView; NCollection_Map<Handle(OpenGl_View)> myMapOfView;
NCollection_DataMap<Standard_Integer, OpenGl_Structure*> myMapOfStructure; NCollection_DataMap<Standard_Integer, OpenGl_Structure*> myMapOfStructure;
public:
TColStd_MapOfInteger myLayerIds; TColStd_MapOfInteger myLayerIds;
TColStd_SequenceOfInteger myLayerSeq; TColStd_SequenceOfInteger myLayerSeq;
OpenGl_MapOfZLayerSettings myMapOfZLayerSettings; OpenGl_MapOfZLayerSettings myMapOfZLayerSettings;
public:
//! State counter for OpenGl structures.
OpenGl_StateCounter* GetStateCounter() const { return &myStateCounter; }
//! Returns unique ID for primitive arrays.
Standard_Size GetNextPrimitiveArrayUID() const { return myUIDGenerator.Increment(); }
protected:
mutable OpenGl_StateCounter myStateCounter; //!< State counter for OpenGl structures. mutable OpenGl_StateCounter myStateCounter; //!< State counter for OpenGl structures.
mutable OpenGl_StateCounter myUIDGenerator; //!< Unique ID counter for primitive arrays. mutable OpenGl_StateCounter myUIDGenerator; //!< Unique ID counter for primitive arrays.