1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-18 14:27:39 +03:00

0024687: TKOpenGl shader programs - same view state for different v3d views

OpenGl_ShaderManager::IsSameView() - add const
This commit is contained in:
duv
2014-03-20 14:39:23 +04:00
committed by bugmaster
parent 1704c57631
commit e6804ff7c0
3 changed files with 41 additions and 3 deletions

View File

@@ -33,8 +33,9 @@ IMPLEMENT_STANDARD_RTTIEXT(OpenGl_ShaderManager, Standard_Transient)
// purpose : Creates new empty shader manager
// =======================================================================
OpenGl_ShaderManager::OpenGl_ShaderManager (OpenGl_Context* theContext)
: myContext (theContext),
myIsPP (Standard_False)
: myContext (theContext),
myIsPP (Standard_False),
myLastView (NULL)
{
//
}