Example #1
0
 public static void ShowWindow(Window window)
 {
     Imports.glfwShowWindow(window);
 }
Example #2
0
 public static void SwapBuffers(Window window)
 {
     Imports.glfwSwapBuffers(window);
 }
Example #3
0
 public static int ExtensionSupported(string extension)
 {
     return(Imports.glfwExtensionSupported(extension));
 }
Example #4
0
 public static double GetTime()
 {
     return(Imports.glfwGetTime());
 }
Example #5
0
 public static void MakeContextCurrent(Window window)
 {
     Imports.glfwMakeContextCurrent(window);
 }
Example #6
0
 public static void SetCursorEnterCallback(Window window, SetCursorEnterCallbackDelegate cbfun)
 {
     Imports.glfwSetCursorEnterCallback(window, cbfun);
 }
Example #7
0
 public static string GetJoystickName(int joystick)
 {
     return(Imports.glfwGetJoystickName(joystick));
 }
Example #8
0
 public static void SetWindowIconifyCallback(Window window, SetWindowIconifyCallbackDelegate cbfun)
 {
     Imports.glfwSetWindowIconifyCallback(window, cbfun);
 }
Example #9
0
 public static void SetFramebufferSizeCallback(Window window, SetFramebufferSizeCallbackDelegate cbfun)
 {
     Imports.glfwSetFramebufferSizeCallback(window, cbfun);
 }
Example #10
0
 public static void SetWindowUserPointer(Window window, IntPtr pointer)
 {
     Imports.glfwSetWindowUserPointer(window, pointer);
 }
Example #11
0
 public static IntPtr GetWindowUserPointer(Window window)
 {
     return(Imports.glfwGetWindowUserPointer(window));
 }
Example #12
0
 public static int GetWindowAttribute(Window window, int attrib)
 {
     return(Imports.glfwGetWindowAttrib(window, attrib));
 }
Example #13
0
 public static Monitor GetWindowMonitor(Window window)
 {
     return(Imports.glfwGetWindowMonitor(window));
 }
Example #14
0
 public static void HideWindow(Window window)
 {
     Imports.glfwHideWindow(window);
 }
Example #15
0
 public static void SetCursorPos(Window window, double x, double y)
 {
     Imports.glfwSetCursorPos(window, x, y);
 }
Example #16
0
 public static void PollEvents()
 {
     Imports.glfwPollEvents();
 }
Example #17
0
 public static void SetMouseButtonCallback(Window window, SetMouseButtonCallbackDelegate cbfun)
 {
     Imports.glfwSetMouseButtonCallback(window, cbfun);
 }
Example #18
0
 public static void WaitEvents()
 {
     Imports.glfwWaitEvents();
 }
Example #19
0
 public static void SetScrollCallback(Window window, SetScrollCallbackDelegate cbfun)
 {
     Imports.glfwSetScrollCallback(window, cbfun);
 }
Example #20
0
 public static int GetInputMode(Window window, int mode)
 {
     return(Imports.glfwGetInputMode(window, mode));
 }
Example #21
0
 public static void SetClipboardString(Window window, string str)
 {
     Imports.glfwSetClipboardString(window, str);
 }
Example #22
0
 public static void SetInputMode(Window window, int mode, int value)
 {
     Imports.glfwSetInputMode(window, mode, value);
 }
Example #23
0
 public static void SetTime(double time)
 {
     Imports.glfwSetTime(time);
 }
Example #24
0
 public static int GetKey(Window window, int key)
 {
     return(Imports.glfwGetKey(window, key));
 }
Example #25
0
 public static Window GetCurrentContext()
 {
     return(Imports.glfwGetCurrentContext());
 }
Example #26
0
 public static int GetMouseButton(Window window, int button)
 {
     return(Imports.glfwGetMouseButton(window, button));
 }
Example #27
0
 public static void SwapInterval(int interval)
 {
     Imports.glfwSwapInterval(interval);
 }
Example #28
0
 public static void GetCursorPos(Window window, out double x, out double y)
 {
     Imports.glfwGetCursorPos(window, out x, out y);
 }
Example #29
0
 public static void GetProcAddress(string procname)
 {
     Imports.glfwGetProcAddress(procname);
 }
Example #30
0
 public static void RestoreWindow(Window window)
 {
     Imports.glfwRestoreWindow(window);
 }