Axiom.RenderSystems.Xna.XnaHardwareOcclusionQuery.Begin C# (CSharp) 메소드

Begin() 공개 메소드

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