Package org.gnome.gtk
Interface GLArea.ResizeCallback
- All Superinterfaces:
FunctionPointer
- Enclosing class:
GLArea
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface declaration of the
ResizeCallback callback.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidrun(int width, int height) Emitted once when the widget is realized, and then each time the widget is changed while realized.default MemorySegmenttoCallback(Arena arena) Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, int, int)method.default voidupcall(MemorySegment sourceGLArea, int width, int height) Theupcallmethod is called from native code.
-
Method Details
-
run
void run(int width, int height) Emitted once when the widget is realized, and then each time the widget is changed while realized.This is useful in order to keep GL state up to date with the widget size, like for instance camera properties which may depend on the width/height ratio.
The GL context for the area is guaranteed to be current when this signal is emitted.
The default handler sets up the GL viewport.
-
upcall
Theupcallmethod is called from native code. The parameters are marshaled andrun(int, int)is executed. -
toCallback
Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, int, int)method.- Specified by:
toCallbackin interfaceFunctionPointer- Parameters:
arena- the arena in which the function pointer is allocated- Returns:
- the native function pointer
-