Example #1
0
 public static int GetWindowAttrib(GlfwWindowPtr window, WindowAttrib param)
 {
     return(GlfwDelegates.glfwGetWindowAttrib(window, (int)param));
 }
Example #2
0
 public static int GetWindowAttrib(GlfwWindowPtr window, WindowAttrib param)
 {
     return GLFWDelegates.glfwGetWindowAttrib(window, (int)param);
 }
Example #3
0
 public static bool GetWindowAttrib(Window window, WindowAttrib attrib)
 {
     return(glfwGetWindowAttrib(window.Ptr, (int)attrib) != 0);
 }
Example #4
0
		public static int GetWindowAttrib(WindowPtr window, WindowAttrib param) {
			return glfwGetWindowAttrib(window, (int)param);
		}
Example #5
0
 public static int GetWindowAttrib(GlfwWindow window, WindowAttrib param)
 {
     return(GlfwCore.glfwGetWindowAttrib(window, (int)param));
 }
Example #6
0
 public static void WindowHint(WindowAttrib target, bool hint)
 {
     GlfwCore.glfwWindowHint((int)target, hint ? 1 : 0);
 }
Example #7
0
 public static void WindowHint(WindowAttrib target, int hint)
 {
     GlfwCore.glfwWindowHint((int)target, hint);
 }
Example #8
0
 public static int GetWindowAttrib(WindowPtr window, WindowAttrib param)
 {
     return(glfwGetWindowAttrib(window, (int)param));
 }