Delegate GLFWCallbacks.CursorPosCallback
The function signature for cursor position callback functions.
Namespace: OpenTK.Windowing.GraphicsLibraryFramework
Assembly: OpenTK.Windowing.GraphicsLibraryFramework.dll
Syntax
public delegate void GLFWCallbacks.CursorPosCallback(Window* window, double x, double y)
Parameters
Type | Name | Description |
---|---|---|
Window* | window | The window that received the event. |
double | x | The new cursor x-coordinate, relative to the left edge of the client area. |
double | y | The new cursor y-coordinate, relative to the top edge of the client area. |