internal static extern sbyte *glfwGetClipboardString(GLFWwindow window);
Example #2
0
 static void callbackWindowSize(GLFWwindow window, int width, int height)
 {
     Console.WriteLine("[glfw_window_size][ w: {0}, h: {1} ]", width, height);
 }
Example #3
0
 internal static extern sbyte* glfwGetClipboardString(GLFWwindow window);
Example #4
0
 static void callbackWindowPos(GLFWwindow window, int xpos, int ypos)
 {
     Console.WriteLine("[glfw_window_pos][ x: {0}, y: {1} ]", xpos, ypos);
 }