mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0028907: Coding Rules, OpenGl_GraphicDriver - fix class fields accidentally marked public
This commit is contained in:
parent
b27ab03d09
commit
99cfc27757
@ -204,6 +204,14 @@ public:
|
||||
|
||||
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:
|
||||
|
||||
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_DataMap<Standard_Integer, OpenGl_Structure*> myMapOfStructure;
|
||||
|
||||
public:
|
||||
|
||||
TColStd_MapOfInteger myLayerIds;
|
||||
TColStd_SequenceOfInteger myLayerSeq;
|
||||
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 myUIDGenerator; //!< Unique ID counter for primitive arrays.
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user