Axiom.RenderSystems.Xna.XnaHardwareOcclusionQuery.Begin C# (CSharp) Méthode

Begin() public méthode

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