Axiom.RenderSystems.Xna.XnaHardwareOcclusionQuery.Begin C# (CSharp) Method

Begin() public method

Starts the hardware occlusion query
public Begin ( ) : void
return void
		public override void Begin()
		{
			// proceed if supported, or silently fail otherwise
			if ( device.GraphicsProfile == XFG.GraphicsProfile.HiDef )
			{
				oQuery.Begin();
			}
		}