OpenTK.GLControl.GetEglDisplay C# (CSharp) Method

GetEglDisplay() public method

public GetEglDisplay ( ) : IntPtr
return System.IntPtr
        public IntPtr GetEglDisplay()
        {
            var eglContext = ((IGraphicsContextInternal)this.context).Implementation as OpenTK.Platform.Egl.EglContext;
            if (eglContext != null)
            {
                return eglContext.MyWindowInfo.Display;
            }
            return IntPtr.Zero;
        }
        public IntPtr GetEglSurface()