Package org.lwjgl.bgfx
Interface BGFXCaptureBeginCallbackI
- All Superinterfaces:
org.lwjgl.system.CallbackI,org.lwjgl.system.Pointer
- All Known Implementing Classes:
BGFXCaptureBeginCallback
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Called when video capture begins.
Type
void (*invoke(long, int, int, int, int, boolean)) (
bgfx_callback_interface_t *_this,
uint32_t _width,
uint32_t _height,
uint32_t _pitch,
bgfx_texture_format_t _format,
bool _yflip
)-
Nested Class Summary
Nested classes/interfaces inherited from interface org.lwjgl.system.Pointer
org.lwjgl.system.Pointer.Default -
Field Summary
FieldsFields inherited from interface org.lwjgl.system.Pointer
BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE -
Method Summary
Methods inherited from interface org.lwjgl.system.CallbackI
address
-
Field Details
-
CIF
static final org.lwjgl.system.libffi.FFICIF CIF
-
-
Method Details
-
getCallInterface
default org.lwjgl.system.libffi.FFICIF getCallInterface()- Specified by:
getCallInterfacein interfaceorg.lwjgl.system.CallbackI
-
callback
default void callback(long ret, long args) - Specified by:
callbackin interfaceorg.lwjgl.system.CallbackI
-
invoke
void invoke(long _this, int _width, int _height, int _pitch, int _format, boolean _yflip) Will be called when video capture begins.- Parameters:
_this- the callback interface_width- image width_height- image height_pitch- number of bytes to skip between the start of each horizontal line of the image_format- texture format_yflip- if true, image origin is bottom left
-