OpenTK.Platform.Egl.EglX11PlatformFactory.CreateGetCurrentGraphicsContext C# (CSharp) Method

CreateGetCurrentGraphicsContext() public method

public CreateGetCurrentGraphicsContext ( ) : GraphicsContext.GetCurrentContextDelegate
return GraphicsContext.GetCurrentContextDelegate
        public override GraphicsContext.GetCurrentContextDelegate CreateGetCurrentGraphicsContext()
        {
            return (GraphicsContext.GetCurrentContextDelegate)delegate
            {
                return new ContextHandle(Egl.GetCurrentContext());
            };
        }
    }