예제 #1
0
        public void FetchProperties()
        {
            GLFW.GetMonitorContentScale(Pointer, out contentScale.X, out contentScale.Y);
            GLFW.GetMonitorWorkarea(Pointer, out bounds.X, out bounds.Y, out bounds.Width, out bounds.Height);

            isPrimary = GLFW.GetPrimaryMonitor() == Pointer;
        }