Show / Hide Table of Contents

Delegate GLFWCallbacks.WindowSizeCallback

The function signature for window size callback functions.

Namespace: OpenTK.Windowing.GraphicsLibraryFramework
Assembly: OpenTK.Windowing.GraphicsLibraryFramework.dll
Syntax
public delegate void GLFWCallbacks.WindowSizeCallback(Window* window, int width, int height)
Parameters
Type Name Description
Window* window

The window that was resized.

int width

The new width, in screen coordinates, of the window.

int height

The new height, in screen coordinates, of the window.

See Also

SetWindowSizeCallback(Window*, WindowSizeCallback)
In This Article
Back to top Generated by DocFX