Delegate GLFWCallbacks.FramebufferSizeCallback
The function signature for framebuffer size callback functions.
Namespace: OpenTK.Windowing.GraphicsLibraryFramework
Assembly: OpenTK.Windowing.GraphicsLibraryFramework.dll
Syntax
public delegate void GLFWCallbacks.FramebufferSizeCallback(Window* window, int width, int height)
Parameters
Type | Name | Description |
---|---|---|
Window* | window | The window whose framebuffer was resized. |
int | width | The new width, in pixels, of the framebuffer. |
int | height | The new height, in pixels, of the framebuffer. |