예제 #1
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern Glfw.Monitor glfwGetWindowMonitor(Glfw.Window window);
예제 #2
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern void glfwSetWindowSize(Glfw.Window window, int width, int height);
예제 #3
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern void glfwIconifyWindow(Glfw.Window window);
예제 #4
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern void glfwSetWindowShouldClose(Glfw.Window window, int value);
예제 #5
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern void glfwSetWindowPos(Glfw.Window window, int xpos, int ypos);
예제 #6
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern void glfwSwapBuffers(Glfw.Window window);
예제 #7
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern void glfwDestroyWindow(Glfw.Window window);
예제 #8
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern void glfwSetFramebufferSizeCallback(Glfw.Window window, Glfw.SetFramebufferSizeCallbackDelegate cbfun);
예제 #9
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern int glfwGetInputMode(Glfw.Window window, int mode);
예제 #10
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern void glfwSetWindowRefreshCallback(Glfw.Window window, Glfw.SetWindowRefreshCallbackDelegate cbfun);
예제 #11
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern void glfwSetWindowIconifyCallback(Glfw.Window window, Glfw.SetWindowIconifyCallbackDelegate cbfun);
예제 #12
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern IntPtr glfwGetWindowUserPointer(Glfw.Window window);
예제 #13
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern void glfwSetWindowUserPointer(Glfw.Window window, IntPtr pointer);
예제 #14
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern int glfwGetWindowAttrib(Glfw.Window window, int attrib);
예제 #15
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern void glfwSetClipboardString(Glfw.Window window, string str);
예제 #16
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern void glfwSetInputMode(Glfw.Window window, int mode, int value);
예제 #17
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern void glfwMakeContextCurrent(Glfw.Window window);
예제 #18
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern int glfwGetKey(Glfw.Window window, int key);
예제 #19
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern Glfw.Window glfwCreateWindow(int width, int height, string title, Glfw.Monitor monitor, Glfw.Window share);
예제 #20
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern int glfwGetMouseButton(Glfw.Window window, int button);
예제 #21
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern int glfwWindowShouldClose(Glfw.Window window);
예제 #22
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern void glfwSetCursorPos(Glfw.Window window, double xpos, double ypos);
예제 #23
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern void glfwSetWindowTitle(Glfw.Window window, string title);
예제 #24
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern void glfwSetMouseButtonCallback(Glfw.Window window, Glfw.SetMouseButtonCallbackDelegate cbfun);
예제 #25
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern void glfwGetWindowSize(Glfw.Window window, out int width, out int height);
예제 #26
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern void glfwSetCursorEnterCallback(Glfw.Window window, Glfw.SetCursorEnterCallbackDelegate cbfun);
예제 #27
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern void glfwGetFramebufferSize(Glfw.Window window, out int width, out int height);
예제 #28
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern void glfwSetScrollCallback(Glfw.Window window, Glfw.SetScrollCallbackDelegate cbfun);
예제 #29
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern void glfwRestoreWindow(Glfw.Window window);
예제 #30
0
파일: Imports.cs 프로젝트: OJETeam/GLFW
 internal static extern void glfwHideWindow(Glfw.Window window);