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