Package org.lwjgl.ovr
Class OVRLayerEyeFov
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.system.Struct
-
- org.lwjgl.ovr.OVRLayerEyeFov
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,org.lwjgl.system.NativeResource
,org.lwjgl.system.Pointer
public class OVRLayerEyeFov extends org.lwjgl.system.Struct implements org.lwjgl.system.NativeResource
Describes a layer that specifies a monoscopic or stereoscopic view. This is the kind of layer that's typically used as layer 0 toSubmitFrame
, as it is the kind of layer used to render a 3D stereoscopic view.Member documentation
Header
–Header.Type
must beLayerType_EyeFov
ColorTexture[ovrEye_Count]
–ovrTextureSwapChains
for the left and right eye respectively. The second one of which can beNULL
.Viewport[ovrEye_Count]
– specifies the ColorTexture sub-rect UV coordinates. BothViewport[0]
andViewport[1]
must be valid.Fov[ovrEye_Count]
– the viewport field of viewRenderPose[ovrEye_Count]
– specifies the position and orientation of each eye view, with the position specified in meters. RenderPose will typically be the value returned from_CalcEyePoses
, but can be different in special cases if a different head pose is used for rendering.SensorSampleTime
– specifies the timestamp when the sourceOVRPosef
(used in calculating RenderPose) was sampled from the SDK. Typically retrieved by callingGetTimeInSeconds
around the instant the application callsGetTrackingState
. The main purpose for this is to accurately track app tracking latency.
Layout
struct ovrLayerEyeFov {
ovrLayerHeader
Header; ovrTextureSwapChain ColorTexture[ovrEye_Count];ovrRecti
Viewport[ovrEye_Count];ovrFovPort
Fov[ovrEye_Count];ovrPosef
RenderPose[ovrEye_Count]; double SensorSampleTime; }
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
OVRLayerEyeFov.Buffer
An array ofOVRLayerEyeFov
structs.
-
Field Summary
Fields Modifier and Type Field Description static int
ALIGNOF
The struct alignment in bytes.static int
COLORTEXTURE
FOV
HEADER
RENDERPOSE
SENSORSAMPLETIMEThe struct member offsets.static int
SIZEOF
The struct size in bytes.static int
VIEWPORT
The struct member offsets.
-
Constructor Summary
Constructors Constructor Description OVRLayerEyeFov(java.nio.ByteBuffer container)
Creates aOVRLayerEyeFov
instance at the current position of the specifiedByteBuffer
container.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OVRLayerEyeFov
calloc()
Returns a newOVRLayerEyeFov
instance allocated withmemCalloc
.static OVRLayerEyeFov.Buffer
calloc(int capacity)
Returns a newOVRLayerEyeFov.Buffer
instance allocated withmemCalloc
.static OVRLayerEyeFov
callocStack()
Returns a newOVRLayerEyeFov
instance allocated on the thread-localMemoryStack
and initializes all its bits to zero.static OVRLayerEyeFov.Buffer
callocStack(int capacity)
Returns a newOVRLayerEyeFov.Buffer
instance allocated on the thread-localMemoryStack
and initializes all its bits to zero.static OVRLayerEyeFov.Buffer
callocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newOVRLayerEyeFov.Buffer
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.static OVRLayerEyeFov
callocStack(org.lwjgl.system.MemoryStack stack)
Returns a newOVRLayerEyeFov
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.org.lwjgl.PointerBuffer
ColorTexture()
Returns aPointerBuffer
view of theColorTexture
field.long
ColorTexture(int index)
Returns the value at the specified index of theColorTexture
field.OVRLayerEyeFov
ColorTexture(int index, long value)
Sets the specified value at the specified index of theColorTexture
field.OVRLayerEyeFov
ColorTexture(org.lwjgl.PointerBuffer value)
Copies the specifiedPointerBuffer
to theColorTexture
field.static OVRLayerEyeFov
create()
Returns a newOVRLayerEyeFov
instance allocated withBufferUtils
.static OVRLayerEyeFov.Buffer
create(int capacity)
Returns a newOVRLayerEyeFov.Buffer
instance allocated withBufferUtils
.static OVRLayerEyeFov
create(long address)
Returns a newOVRLayerEyeFov
instance for the specified memory address.static OVRLayerEyeFov.Buffer
create(long address, int capacity)
Create aOVRLayerEyeFov.Buffer
instance at the specified memory.static OVRLayerEyeFov
createSafe(long address)
static OVRLayerEyeFov.Buffer
createSafe(long address, int capacity)
OVRFovPort.Buffer
Fov()
Returns aOVRFovPort
.Buffer view of theFov
field.OVRFovPort
Fov(int index)
Returns aOVRFovPort
view of the struct at the specified index of theFov
field.OVRLayerEyeFov
Fov(int index, java.util.function.Consumer<OVRFovPort> consumer)
Passes the element atindex
of theFov
field to the specifiedConsumer
.OVRLayerEyeFov
Fov(int index, OVRFovPort value)
Copies the specifiedOVRFovPort
at the specified index of theFov
field.OVRLayerEyeFov
Fov(java.util.function.Consumer<OVRFovPort.Buffer> consumer)
Passes theFov
field to the specifiedConsumer
.OVRLayerEyeFov
Fov(OVRFovPort.Buffer value)
Copies the specifiedOVRFovPort.Buffer
to theFov
field.OVRLayerHeader
Header()
Returns aOVRLayerHeader
view of theHeader
field.OVRLayerEyeFov
Header(java.util.function.Consumer<OVRLayerHeader> consumer)
Passes theHeader
field to the specifiedConsumer
.OVRLayerEyeFov
Header(OVRLayerHeader value)
Copies the specifiedOVRLayerHeader
to theHeader
field.static OVRLayerEyeFov
malloc()
Returns a newOVRLayerEyeFov
instance allocated withmemAlloc
.static OVRLayerEyeFov.Buffer
malloc(int capacity)
Returns a newOVRLayerEyeFov.Buffer
instance allocated withmemAlloc
.static OVRLayerEyeFov
mallocStack()
Returns a newOVRLayerEyeFov
instance allocated on the thread-localMemoryStack
.static OVRLayerEyeFov.Buffer
mallocStack(int capacity)
Returns a newOVRLayerEyeFov.Buffer
instance allocated on the thread-localMemoryStack
.static OVRLayerEyeFov.Buffer
mallocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newOVRLayerEyeFov.Buffer
instance allocated on the specifiedMemoryStack
.static OVRLayerEyeFov
mallocStack(org.lwjgl.system.MemoryStack stack)
Returns a newOVRLayerEyeFov
instance allocated on the specifiedMemoryStack
.static org.lwjgl.PointerBuffer
nColorTexture(long struct)
Unsafe version ofColorTexture()
.static long
nColorTexture(long struct, int index)
Unsafe version ofColorTexture
.static void
nColorTexture(long struct, int index, long value)
Unsafe version ofColorTexture
.static void
nColorTexture(long struct, org.lwjgl.PointerBuffer value)
Unsafe version ofColorTexture
.static OVRFovPort.Buffer
nFov(long struct)
Unsafe version ofFov()
.static OVRFovPort
nFov(long struct, int index)
Unsafe version ofFov
.static void
nFov(long struct, int index, OVRFovPort value)
Unsafe version ofFov
.static void
nFov(long struct, OVRFovPort.Buffer value)
Unsafe version ofFov
.static OVRLayerHeader
nHeader(long struct)
Unsafe version ofHeader()
.static void
nHeader(long struct, OVRLayerHeader value)
Unsafe version ofHeader
.static OVRPosef.Buffer
nRenderPose(long struct)
Unsafe version ofRenderPose()
.static OVRPosef
nRenderPose(long struct, int index)
Unsafe version ofRenderPose
.static void
nRenderPose(long struct, int index, OVRPosef value)
Unsafe version ofRenderPose
.static void
nRenderPose(long struct, OVRPosef.Buffer value)
Unsafe version ofRenderPose
.static double
nSensorSampleTime(long struct)
Unsafe version ofSensorSampleTime()
.static void
nSensorSampleTime(long struct, double value)
Unsafe version ofSensorSampleTime
.static OVRRecti.Buffer
nViewport(long struct)
Unsafe version ofViewport()
.static OVRRecti
nViewport(long struct, int index)
Unsafe version ofViewport
.static void
nViewport(long struct, int index, OVRRecti value)
Unsafe version ofViewport
.static void
nViewport(long struct, OVRRecti.Buffer value)
Unsafe version ofViewport
.OVRPosef.Buffer
RenderPose()
Returns aOVRPosef
.Buffer view of theRenderPose
field.OVRPosef
RenderPose(int index)
Returns aOVRPosef
view of the struct at the specified index of theRenderPose
field.OVRLayerEyeFov
RenderPose(int index, java.util.function.Consumer<OVRPosef> consumer)
Passes the element atindex
of theRenderPose
field to the specifiedConsumer
.OVRLayerEyeFov
RenderPose(int index, OVRPosef value)
Copies the specifiedOVRPosef
at the specified index of theRenderPose
field.OVRLayerEyeFov
RenderPose(java.util.function.Consumer<OVRPosef.Buffer> consumer)
Passes theRenderPose
field to the specifiedConsumer
.OVRLayerEyeFov
RenderPose(OVRPosef.Buffer value)
Copies the specifiedOVRPosef.Buffer
to theRenderPose
field.double
SensorSampleTime()
Returns the value of theSensorSampleTime
field.OVRLayerEyeFov
SensorSampleTime(double value)
Sets the specified value to theSensorSampleTime
field.OVRLayerEyeFov
set(OVRLayerEyeFov src)
Copies the specified struct data to this struct.OVRLayerEyeFov
set(OVRLayerHeader Header, org.lwjgl.PointerBuffer ColorTexture, OVRRecti.Buffer Viewport, OVRFovPort.Buffer Fov, OVRPosef.Buffer RenderPose, double SensorSampleTime)
Initializes this struct with the specified values.int
sizeof()
static void
validate(long struct)
Validates pointer members that should not beNULL
.static void
validate(long array, int count)
Callsvalidate(long)
for each struct contained in the specified struct array.OVRRecti.Buffer
Viewport()
Returns aOVRRecti
.Buffer view of theViewport
field.OVRRecti
Viewport(int index)
Returns aOVRRecti
view of the struct at the specified index of theViewport
field.OVRLayerEyeFov
Viewport(int index, java.util.function.Consumer<OVRRecti> consumer)
Passes the element atindex
of theViewport
field to the specifiedConsumer
.OVRLayerEyeFov
Viewport(int index, OVRRecti value)
Copies the specifiedOVRRecti
at the specified index of theViewport
field.OVRLayerEyeFov
Viewport(java.util.function.Consumer<OVRRecti.Buffer> consumer)
Passes theViewport
field to the specifiedConsumer
.OVRLayerEyeFov
Viewport(OVRRecti.Buffer value)
Copies the specifiedOVRRecti.Buffer
to theViewport
field.
-
-
-
Constructor Detail
-
OVRLayerEyeFov
public OVRLayerEyeFov(java.nio.ByteBuffer container)
Creates aOVRLayerEyeFov
instance at the current position of the specifiedByteBuffer
container. Changes to the buffer's content will be visible to the struct instance and vice versa.The created instance holds a strong reference to the container object.
-
-
Method Detail
-
sizeof
public int sizeof()
- Specified by:
sizeof
in classorg.lwjgl.system.Struct
-
Header
public OVRLayerHeader Header()
Returns aOVRLayerHeader
view of theHeader
field.
-
ColorTexture
public org.lwjgl.PointerBuffer ColorTexture()
Returns aPointerBuffer
view of theColorTexture
field.
-
ColorTexture
public long ColorTexture(int index)
Returns the value at the specified index of theColorTexture
field.
-
Viewport
public OVRRecti.Buffer Viewport()
Returns aOVRRecti
.Buffer view of theViewport
field.
-
Viewport
public OVRRecti Viewport(int index)
Returns aOVRRecti
view of the struct at the specified index of theViewport
field.
-
Fov
public OVRFovPort.Buffer Fov()
Returns aOVRFovPort
.Buffer view of theFov
field.
-
Fov
public OVRFovPort Fov(int index)
Returns aOVRFovPort
view of the struct at the specified index of theFov
field.
-
RenderPose
public OVRPosef.Buffer RenderPose()
Returns aOVRPosef
.Buffer view of theRenderPose
field.
-
RenderPose
public OVRPosef RenderPose(int index)
Returns aOVRPosef
view of the struct at the specified index of theRenderPose
field.
-
SensorSampleTime
public double SensorSampleTime()
Returns the value of theSensorSampleTime
field.
-
Header
public OVRLayerEyeFov Header(OVRLayerHeader value)
Copies the specifiedOVRLayerHeader
to theHeader
field.
-
Header
public OVRLayerEyeFov Header(java.util.function.Consumer<OVRLayerHeader> consumer)
Passes theHeader
field to the specifiedConsumer
.
-
ColorTexture
public OVRLayerEyeFov ColorTexture(org.lwjgl.PointerBuffer value)
Copies the specifiedPointerBuffer
to theColorTexture
field.
-
ColorTexture
public OVRLayerEyeFov ColorTexture(int index, long value)
Sets the specified value at the specified index of theColorTexture
field.
-
Viewport
public OVRLayerEyeFov Viewport(OVRRecti.Buffer value)
Copies the specifiedOVRRecti.Buffer
to theViewport
field.
-
Viewport
public OVRLayerEyeFov Viewport(int index, OVRRecti value)
Copies the specifiedOVRRecti
at the specified index of theViewport
field.
-
Viewport
public OVRLayerEyeFov Viewport(java.util.function.Consumer<OVRRecti.Buffer> consumer)
Passes theViewport
field to the specifiedConsumer
.
-
Viewport
public OVRLayerEyeFov Viewport(int index, java.util.function.Consumer<OVRRecti> consumer)
Passes the element atindex
of theViewport
field to the specifiedConsumer
.
-
Fov
public OVRLayerEyeFov Fov(OVRFovPort.Buffer value)
Copies the specifiedOVRFovPort.Buffer
to theFov
field.
-
Fov
public OVRLayerEyeFov Fov(int index, OVRFovPort value)
Copies the specifiedOVRFovPort
at the specified index of theFov
field.
-
Fov
public OVRLayerEyeFov Fov(java.util.function.Consumer<OVRFovPort.Buffer> consumer)
Passes theFov
field to the specifiedConsumer
.
-
Fov
public OVRLayerEyeFov Fov(int index, java.util.function.Consumer<OVRFovPort> consumer)
Passes the element atindex
of theFov
field to the specifiedConsumer
.
-
RenderPose
public OVRLayerEyeFov RenderPose(OVRPosef.Buffer value)
Copies the specifiedOVRPosef.Buffer
to theRenderPose
field.
-
RenderPose
public OVRLayerEyeFov RenderPose(int index, OVRPosef value)
Copies the specifiedOVRPosef
at the specified index of theRenderPose
field.
-
RenderPose
public OVRLayerEyeFov RenderPose(java.util.function.Consumer<OVRPosef.Buffer> consumer)
Passes theRenderPose
field to the specifiedConsumer
.
-
RenderPose
public OVRLayerEyeFov RenderPose(int index, java.util.function.Consumer<OVRPosef> consumer)
Passes the element atindex
of theRenderPose
field to the specifiedConsumer
.
-
SensorSampleTime
public OVRLayerEyeFov SensorSampleTime(double value)
Sets the specified value to theSensorSampleTime
field.
-
set
public OVRLayerEyeFov set(OVRLayerHeader Header, org.lwjgl.PointerBuffer ColorTexture, OVRRecti.Buffer Viewport, OVRFovPort.Buffer Fov, OVRPosef.Buffer RenderPose, double SensorSampleTime)
Initializes this struct with the specified values.
-
set
public OVRLayerEyeFov set(OVRLayerEyeFov src)
Copies the specified struct data to this struct.- Parameters:
src
- the source struct- Returns:
- this struct
-
malloc
public static OVRLayerEyeFov malloc()
Returns a newOVRLayerEyeFov
instance allocated withmemAlloc
. The instance must be explicitly freed.
-
calloc
public static OVRLayerEyeFov calloc()
Returns a newOVRLayerEyeFov
instance allocated withmemCalloc
. The instance must be explicitly freed.
-
create
public static OVRLayerEyeFov create()
Returns a newOVRLayerEyeFov
instance allocated withBufferUtils
.
-
create
public static OVRLayerEyeFov create(long address)
Returns a newOVRLayerEyeFov
instance for the specified memory address.
-
createSafe
@Nullable public static OVRLayerEyeFov createSafe(long address)
-
malloc
public static OVRLayerEyeFov.Buffer malloc(int capacity)
Returns a newOVRLayerEyeFov.Buffer
instance allocated withmemAlloc
. The instance must be explicitly freed.- Parameters:
capacity
- the buffer capacity
-
calloc
public static OVRLayerEyeFov.Buffer calloc(int capacity)
Returns a newOVRLayerEyeFov.Buffer
instance allocated withmemCalloc
. The instance must be explicitly freed.- Parameters:
capacity
- the buffer capacity
-
create
public static OVRLayerEyeFov.Buffer create(int capacity)
Returns a newOVRLayerEyeFov.Buffer
instance allocated withBufferUtils
.- Parameters:
capacity
- the buffer capacity
-
create
public static OVRLayerEyeFov.Buffer create(long address, int capacity)
Create aOVRLayerEyeFov.Buffer
instance at the specified memory.- Parameters:
address
- the memory addresscapacity
- the buffer capacity
-
createSafe
@Nullable public static OVRLayerEyeFov.Buffer createSafe(long address, int capacity)
-
mallocStack
public static OVRLayerEyeFov mallocStack()
Returns a newOVRLayerEyeFov
instance allocated on the thread-localMemoryStack
.
-
callocStack
public static OVRLayerEyeFov callocStack()
Returns a newOVRLayerEyeFov
instance allocated on the thread-localMemoryStack
and initializes all its bits to zero.
-
mallocStack
public static OVRLayerEyeFov mallocStack(org.lwjgl.system.MemoryStack stack)
Returns a newOVRLayerEyeFov
instance allocated on the specifiedMemoryStack
.- Parameters:
stack
- the stack from which to allocate
-
callocStack
public static OVRLayerEyeFov callocStack(org.lwjgl.system.MemoryStack stack)
Returns a newOVRLayerEyeFov
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.- Parameters:
stack
- the stack from which to allocate
-
mallocStack
public static OVRLayerEyeFov.Buffer mallocStack(int capacity)
Returns a newOVRLayerEyeFov.Buffer
instance allocated on the thread-localMemoryStack
.- Parameters:
capacity
- the buffer capacity
-
callocStack
public static OVRLayerEyeFov.Buffer callocStack(int capacity)
Returns a newOVRLayerEyeFov.Buffer
instance allocated on the thread-localMemoryStack
and initializes all its bits to zero.- Parameters:
capacity
- the buffer capacity
-
mallocStack
public static OVRLayerEyeFov.Buffer mallocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newOVRLayerEyeFov.Buffer
instance allocated on the specifiedMemoryStack
.- Parameters:
stack
- the stack from which to allocatecapacity
- the buffer capacity
-
callocStack
public static OVRLayerEyeFov.Buffer callocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newOVRLayerEyeFov.Buffer
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.- Parameters:
stack
- the stack from which to allocatecapacity
- the buffer capacity
-
nHeader
public static OVRLayerHeader nHeader(long struct)
Unsafe version ofHeader()
.
-
nColorTexture
public static org.lwjgl.PointerBuffer nColorTexture(long struct)
Unsafe version ofColorTexture()
.
-
nColorTexture
public static long nColorTexture(long struct, int index)
Unsafe version ofColorTexture
.
-
nViewport
public static OVRRecti.Buffer nViewport(long struct)
Unsafe version ofViewport()
.
-
nFov
public static OVRFovPort.Buffer nFov(long struct)
Unsafe version ofFov()
.
-
nFov
public static OVRFovPort nFov(long struct, int index)
Unsafe version ofFov
.
-
nRenderPose
public static OVRPosef.Buffer nRenderPose(long struct)
Unsafe version ofRenderPose()
.
-
nRenderPose
public static OVRPosef nRenderPose(long struct, int index)
Unsafe version ofRenderPose
.
-
nSensorSampleTime
public static double nSensorSampleTime(long struct)
Unsafe version ofSensorSampleTime()
.
-
nHeader
public static void nHeader(long struct, OVRLayerHeader value)
Unsafe version ofHeader
.
-
nColorTexture
public static void nColorTexture(long struct, org.lwjgl.PointerBuffer value)
Unsafe version ofColorTexture
.
-
nColorTexture
public static void nColorTexture(long struct, int index, long value)
Unsafe version ofColorTexture
.
-
nViewport
public static void nViewport(long struct, OVRRecti.Buffer value)
Unsafe version ofViewport
.
-
nViewport
public static void nViewport(long struct, int index, OVRRecti value)
Unsafe version ofViewport
.
-
nFov
public static void nFov(long struct, OVRFovPort.Buffer value)
Unsafe version ofFov
.
-
nFov
public static void nFov(long struct, int index, OVRFovPort value)
Unsafe version ofFov
.
-
nRenderPose
public static void nRenderPose(long struct, OVRPosef.Buffer value)
Unsafe version ofRenderPose
.
-
nRenderPose
public static void nRenderPose(long struct, int index, OVRPosef value)
Unsafe version ofRenderPose
.
-
nSensorSampleTime
public static void nSensorSampleTime(long struct, double value)
Unsafe version ofSensorSampleTime
.
-
validate
public static void validate(long struct)
Validates pointer members that should not beNULL
.- Parameters:
struct
- the struct to validate
-
validate
public static void validate(long array, int count)
Callsvalidate(long)
for each struct contained in the specified struct array.- Parameters:
array
- the struct array to validatecount
- the number of structs inarray
-
-