Axiom.RenderSystems.DirectX9.D3DHardwareOcclusionQuery.IsStillOutstanding C# (CSharp) Метод

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

Lets you know when query is done, or still be processed by the Hardware
public IsStillOutstanding ( ) : bool
Результат bool
		public override bool IsStillOutstanding()
		{
			if ( !isQueryResultStillOutstanding )
				return false;

			return query.CheckStatus( true );
		}