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]; } }
internal static extern GlfwWindowPtr glfwCreateWindow(int width, int height, [MarshalAs(UnmanagedType.LPStr)] string title, GlfwMonitorPtr monitor, GlfwWindowPtr share);
internal static extern void glfwSetGammaRamp(GlfwMonitorPtr monitor, ref GlfwGammaRamp ramp);
internal static extern void glfwGetGammaRamp(GlfwMonitorPtr monitor, out GlfwGammaRampInternal ramp);
internal static extern void glfwSetGamma(GlfwMonitorPtr monitor, float gamma);
internal static extern GlfwVidMode *glfwGetVideoMode(GlfwMonitorPtr monitor);
internal static extern GlfwVidMode *glfwGetVideoModes(GlfwMonitorPtr monitor, out int count);
internal static extern sbyte *glfwGetMonitorName(GlfwMonitorPtr monitor);
internal static extern void glfwGetMonitorPhysicalSize(GlfwMonitorPtr monitor, out int width, out int height);
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); }