Package org.lwjgl.stb
Class STBIReadCallback
java.lang.Object
org.lwjgl.system.Callback
org.lwjgl.stb.STBIReadCallback
- All Implemented Interfaces:
AutoCloseable
,STBIReadCallbackI
,CallbackI
,NativeResource
,Pointer
Callback function:
(* anonymous)
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.lwjgl.system.Pointer
Pointer.Default
-
Field Summary
Fields inherited from interface org.lwjgl.system.Pointer
BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE
Fields inherited from interface org.lwjgl.stb.STBIReadCallbackI
CIF
-
Method Summary
Modifier and TypeMethodDescriptionstatic STBIReadCallback
create
(long functionPointer) Creates aSTBIReadCallback
instance from the specified function pointer.static STBIReadCallback
create
(STBIReadCallbackI instance) Creates aSTBIReadCallback
instance that delegates to the specifiedSTBIReadCallbackI
instance.static @Nullable STBIReadCallback
createSafe
(long functionPointer) static ByteBuffer
getData
(long data, int size) Converts the specifiedSTBIReadCallback
arguments to a ByteBuffer.Methods inherited from class org.lwjgl.system.Callback
address, equals, free, free, get, getSafe, hashCode, toString
Methods inherited from interface org.lwjgl.system.NativeResource
close
Methods inherited from interface org.lwjgl.stb.STBIReadCallbackI
callback, getCallInterface, invoke
-
Method Details
-
create
Creates aSTBIReadCallback
instance from the specified function pointer.- Returns:
- the new
STBIReadCallback
-
createSafe
-
create
Creates aSTBIReadCallback
instance that delegates to the specifiedSTBIReadCallbackI
instance. -
getData
Converts the specifiedSTBIReadCallback
arguments to a ByteBuffer.This method may only be used inside a STBIReadCallback invocation.
- Parameters:
data
- the STBIReadCallbackdata
argumentsize
- the STBIReadCallbacksize
argument- Returns:
- the data as a ByteBuffer
-