public static unsafe GlfwMonitorPtr[] GetMonitors()
        {
            int             count;
            GlfwMonitorPtr *array = GlfwDelegates.glfwGetMonitors(out count);

            GlfwMonitorPtr[] result = new GlfwMonitorPtr[count];
            for (int i = 0; i < count; ++i)
            {
                result[i] = array[i];
            }
            return(result);
        }
        public static GlfwVidMode[] GetVideoModes(GlfwMonitorPtr monitor)
        {
            int          count;
            GlfwVidMode *array = GlfwDelegates.glfwGetVideoModes(monitor, out count);

            GlfwVidMode[] result = new GlfwVidMode[count];
            for (int i = 0; i < count; ++i)
            {
                result[i] = array[i];
            }
            return(result);
        }
        public static GlfwVidMode GetVideoMode(GlfwMonitorPtr monitor)
        {
            GlfwVidMode *vidMode    = GlfwDelegates.glfwGetVideoMode(monitor);
            GlfwVidMode  returnMode = new GlfwVidMode {
                RedBits     = vidMode->RedBits,
                GreenBits   = vidMode->GreenBits,
                BlueBits    = vidMode->BlueBits,
                RefreshRate = vidMode->RefreshRate,
                Width       = vidMode->Width,
                Height      = vidMode->Height
            };

            return(returnMode);
        }
        public static void GetGammaRamp(GlfwMonitorPtr monitor, out GlfwGammaRamp ramp)
        {
            GlfwGammaRampInternal rampI;

            GlfwDelegates.glfwGetGammaRamp(monitor, out rampI);
            uint length = rampI.Length;

            ramp       = new GlfwGammaRamp();
            ramp.Red   = new uint[length];
            ramp.Green = new uint[length];
            ramp.Blue  = new uint[length];
            for (int i = 0; i < ramp.Red.Length; ++i)
            {
                ramp.Red[i] = rampI.Red[i];
            }
            for (int i = 0; i < ramp.Green.Length; ++i)
            {
                ramp.Green[i] = rampI.Green[i];
            }
            for (int i = 0; i < ramp.Blue.Length; ++i)
            {
                ramp.Blue[i] = rampI.Blue[i];
            }
        }
Exemple #5
0
 internal static extern GlfwWindowPtr glfwCreateWindow(int width, int height, [MarshalAs(UnmanagedType.LPStr)] string title, GlfwMonitorPtr monitor, GlfwWindowPtr share);
Exemple #6
0
 internal static extern void glfwSetGammaRamp(GlfwMonitorPtr monitor, ref GlfwGammaRamp ramp);
Exemple #7
0
 internal static extern void glfwGetGammaRamp(GlfwMonitorPtr monitor, out GlfwGammaRampInternal ramp);
Exemple #8
0
 internal static extern void glfwSetGamma(GlfwMonitorPtr monitor, float gamma);
Exemple #9
0
 internal static extern GlfwVidMode *glfwGetVideoMode(GlfwMonitorPtr monitor);
Exemple #10
0
 internal static extern GlfwVidMode *glfwGetVideoModes(GlfwMonitorPtr monitor, out int count);
Exemple #11
0
 internal static extern sbyte *glfwGetMonitorName(GlfwMonitorPtr monitor);
Exemple #12
0
 internal static extern void glfwGetMonitorPhysicalSize(GlfwMonitorPtr monitor, out int width, out int height);
Exemple #13
0
 internal static extern void glfwGetMonitorPos(GlfwMonitorPtr monitor, out int xpos, out int ypos);
 public static void SetGamma(GlfwMonitorPtr monitor, float gamma)
 {
     GlfwDelegates.glfwSetGamma(monitor, gamma);
 }
 public static string GetMonitorName(GlfwMonitorPtr monitor)
 {
     return(new string(GlfwDelegates.glfwGetMonitorName(monitor)));
 }
 public static void GetMonitorPhysicalSize(GlfwMonitorPtr monitor, out int width, out int height)
 {
     GlfwDelegates.glfwGetMonitorPhysicalSize(monitor, out width, out height);
 }
 public static void GetMonitorPos(GlfwMonitorPtr monitor, out int xpos, out int ypos)
 {
     GlfwDelegates.glfwGetMonitorPos(monitor, out xpos, out ypos);
 }
 public static GlfwWindowPtr CreateWindow(int width, int height, string title, GlfwMonitorPtr monitor, GlfwWindowPtr share)
 {
     return(GlfwDelegates.glfwCreateWindow(width, height, title, monitor, share));
 }
 public static void SetGammaRamp(GlfwMonitorPtr monitor, ref GlfwGammaRamp ramp)
 {
     ramp.Length = (uint)ramp.Red.Length;
     GlfwDelegates.glfwSetGammaRamp(monitor, ref ramp);
 }