Axiom.RenderSystems.OpenGL.GLHardwareOcclusionQuery.Begin C# (CSharp) 메소드

Begin() 공개 메소드

public Begin ( ) : void
리턴 void
		public override void Begin()
		{
			if ( isSupportedNV )
			{
				Gl.glBeginOcclusionQueryNV( this.queryId );
			}
			else if ( isSupportedARB )
			{
				Gl.glBeginQueryARB( Gl.GL_SAMPLES_PASSED_ARB, this.queryId );
			}
		}