Delegate GLFWCallbacks.ScrollCallback
The function signature for scroll callback functions.
Namespace: OpenTK.Windowing.GraphicsLibraryFramework
Assembly: OpenTK.Windowing.GraphicsLibraryFramework.dll
Syntax
public delegate void GLFWCallbacks.ScrollCallback(Window* window, double offsetX, double offsetY)
Parameters
Type | Name | Description |
---|---|---|
Window* | window | The window that received the event. |
double | offsetX | The scroll offset along the x-axis. |
double | offsetY | The scroll offset along the y-axis. |