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 TypeMethodDescriptionvoid
run
(int width, int height) Emitted once when the widget is realized, and then each time the widget is changed while realized.default MemorySegment
toCallback
(Arena arena) Creates a native function pointer to theupcall(java.lang.foreign.MemorySegment, int, int)
method.default void
upcall
(MemorySegment sourceGLArea, int width, int height) Theupcall
method 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
Theupcall
method 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:
toCallback
in interfaceFunctionPointer
- Parameters:
arena
- the function pointer will be allocated in this arena- Returns:
- the native function pointer
-