Axiom.RenderSystems.DirectX9.D3DHardwareOcclusionQuery.End C# (CSharp) Method

End() public method

Ends the hardware occlusion test
public End ( ) : void
return void
		public override void End()
		{
			// proceed if supported, or silently fail otherwise
			if ( isSupported )
			{
				query.Issue( D3D.Issue.End );
			}
		}