Delegate GLFWCallbacks.WindowPosCallback
The function signature for window position callback functions.
Namespace: OpenTK.Windowing.GraphicsLibraryFramework
Assembly: OpenTK.Windowing.GraphicsLibraryFramework.dll
Syntax
public delegate void GLFWCallbacks.WindowPosCallback(Window* window, int x, int y)
Parameters
Type | Name | Description |
---|---|---|
Window* | window | The window that was moved. |
int | x | The new x-coordinate, in screen coordinates, of the upper-left corner of the client area of the window. |
int | y | The new y-coordinate, in screen coordinates, of the upper-left corner of the client area of the window. |