Axiom.RenderSystems.OpenGL.GLPBRTTManager.ReleasePBuffer C# (CSharp) Метод

ReleasePBuffer() публичный Метод

Release PBuffer for a certain pixel format
public ReleasePBuffer ( PixelComponentType pcType ) : void
pcType PixelComponentType
Результат void
		public void ReleasePBuffer( PixelComponentType pcType )
		{
			--pBuffers[ (int)pcType ].InUseCount;
			if ( pBuffers[ (int)pcType ].InUseCount == 0 )
			{
				pBuffers[ (int)pcType ].PixelBuffer = null;
			}
		}