Axiom.RenderSystems.OpenGLES.GLESRenderSystem.EndFrame C# (CSharp) Method

EndFrame() public method

public EndFrame ( ) : void
return void
		public override void EndFrame()
		{
			// Deactivate the viewport clipping.
			if ( _rsCapabilities.HasCapability( Capabilities.ScissorTest ) )
			{
				OpenGL.Disable( All.ScissorTest );
				GLESConfig.GlCheckError( this );
			}
		}
GLESRenderSystem