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

IsStillOutstanding() public method

Lets you know when query is done, or still be processed by the Hardware
public IsStillOutstanding ( ) : bool
return bool
		public override bool IsStillOutstanding()
		{
			if ( !isQueryResultStillOutstanding )
				return false;

			return query.CheckStatus( true );
		}