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;
			}
		}