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 );
			}
		}