Exemple #1
0
 public void WindowHint(WindowHint hint, bool value)
 {
     WindowHint((Int32)hint, value ? 1 : 0);
 }
Exemple #2
0
 public void WindowHint(WindowHint hint, Enum value)
 {
     WindowHint((Int32)hint, (Int32)(object)value);
 }
Exemple #3
0
 internal static extern void glfwWindowHint(WindowHint target, int hint);
Exemple #4
0
 public void WindowHint(WindowHint hint, int value)
 {
     WindowHint((Int32)hint, value);
 }
Exemple #5
0
 public static void WindowHint(WindowHint target, int hint)
 {
     GlfwDelegates.glfwWindowHint(target, hint);
 }
Exemple #6
0
 public static void OpenWindowHint(WindowHint target, OpenGLProfile profile)
 {
     glfwOpenWindowHint((int)target, (int)profile);
 }
Exemple #7
0
 public static int GetWindowAttrib(GlfwWindow window, WindowHint param)
 {
     return(GlfwCore.glfwGetWindowAttrib(window, (int)param));
 }
Exemple #8
0
 internal static extern void glfwWindowHint(WindowHint target, int hint);
Exemple #9
0
 public static void WindowHint(WindowHint target, int hint)
 {
     GlfwCore.glfwWindowHint((int)target, hint);
 }
Exemple #10
0
 public static void WindowHint(WindowHint target, bool hint)
 {
     GlfwCore.glfwWindowHint((int)target, hint ? 1 : 0);
 }
Exemple #11
0
		public static int GetWindowParam(GlfwWindowPtr window, WindowHint param) {
			return GlfwDelegates.glfwGetWindowParam(window, (int)param);
		}
Exemple #12
0
 public static int GetWindowAttrib(WindowPtr window, WindowHint param)
 {
     return(glfwGetWindowAttrib(window, (int)param));
 }
Exemple #13
0
 public static void WindowHint(WindowHint target, int hint)
 {
     glfwWindowHint(target, hint);
 }
Exemple #14
0
 public static void WindowHint(WindowHint target, int hint)
 {
     GLFWDelegates.glfwWindowHint(target, hint);
 }
Exemple #15
0
 public static extern void WindowHint(WindowHint hint, int value);
Exemple #16
0
 public static int GetWindowAttrib(GlfwWindowPtr window, WindowHint param)
 {
     return GLFWDelegates.glfwGetWindowAttrib(window, (int)param);
 }
Exemple #17
0
		public static void WindowHint(WindowHint target, int hint) {
			glfwWindowHint(target, hint);
		}
Exemple #18
0
 public static void WindowHint(WindowHint hint, int value)
 {
     glfwWindowHint((int)hint, value);
     CheckError();
 }
Exemple #19
0
		public static int GetWindowAttrib(WindowPtr window, WindowHint param) {
			return glfwGetWindowAttrib(window, (int)param);
		}
Exemple #20
0
 public static int GetWindowAttrib(GlfwWindowPtr window, WindowHint param)
 {
     return(GlfwDelegates.glfwGetWindowAttrib(window, (int)param));
 }
Exemple #21
0
 public static void OpenWindowHint(WindowHint target, int hint)
 {
     glfwOpenWindowHint((int)target, hint);
 }