Axiom.RenderSystems.OpenGL.GLRTTManager.GLRTTManager C# (CSharp) Method

GLRTTManager() protected method

Internal constructor. This class cannot be instantiated externally.
Protected internal because this singleton will actually hold the instance of a subclass created by a render system plugin.
protected GLRTTManager ( Axiom.RenderSystems.OpenGL.BaseGLSupport glSupport ) : System
glSupport Axiom.RenderSystems.OpenGL.BaseGLSupport
return System
		protected internal GLRTTManager( BaseGLSupport glSupport )
		{
			if ( _instance == null )
			{
				_instance = this;
				_glSupport = glSupport;
			}
		}