- All Superinterfaces:
Callback
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
IGLFWWindowContentScaleFun
relies on preview features of the Java platform:
IGLFWWindowContentScaleFun
refers to one or more preview APIs:FunctionDescriptor
,MemorySegment
.
Preview features may be removed in a future release, or upgraded to permanent features of the Java platform.
This is the function pointer type for window content scale callbacks.
A window content scale callback function has the following signature:
@Invoker(IGLFWWindowContentScaleFun::invoke)
void functionName(MemorySegment window, float xscale, float yscale);
- Since:
- 0.1.0
- Author:
- squid233
- See Also:
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptiondefault FunctionDescriptorPREVIEW
Returns the function descriptor of this callback.default MethodHandle
handle
(MethodHandles.Lookup lookup) Finds the method handle from the given method handles lookup.void
invoke
(MemorySegmentPREVIEW window, float xscale, float yscale) The function pointer type for window content scale callbacks.
-
Field Details
-
DESC
-
MTYPE
-
-
Method Details
-
invoke
The function pointer type for window content scale callbacks.- Parameters:
window
- The window whose content scale changed.xscale
- The new x-axis content scale of the window.yscale
- The new y-axis content scale of the window.
-
descriptor
Description copied from interface:Callback
Returns the function descriptor of this callback.- Specified by:
descriptor
in interfaceCallback
- Returns:
- the function descriptor of this callback
-
handle
default MethodHandle handle(MethodHandles.Lookup lookup) throws NoSuchMethodException, IllegalAccessException Description copied from interface:Callback
Finds the method handle from the given method handles lookup.- Specified by:
handle
in interfaceCallback
- Parameters:
lookup
- the lookup- Returns:
- the method handle
- Throws:
NoSuchMethodException
- if the method does not existIllegalAccessException
- if access checking fails, or if the method isstatic
, or if the method's variable arity modifier bit is set andasVarargsCollector
fails
-
IGLFWWindowContentScaleFun
when preview features are enabled.