Class XrPassthroughLayerCreateInfoFB

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<XrPassthroughLayerCreateInfoFB>
org.lwjgl.openxr.XrPassthroughLayerCreateInfoFB
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class XrPassthroughLayerCreateInfoFB extends org.lwjgl.system.Struct<XrPassthroughLayerCreateInfoFB> implements org.lwjgl.system.NativeResource
A create structure for passthrough layers.
Member Descriptions
  • type is the XrStructureType of this structure.
  • next is NULL or a pointer to the next structure in a structure chain. No such structures are defined in core OpenXR or this extension.
  • passthrough an XrPassthroughFB handle.
  • flags XrPassthroughFlagsFB that specify additional behavior.
  • purpose XrPassthroughLayerPurposeFB that specifies the layer’s purpose.
Valid Usage (Implicit)
See Also

CreatePassthroughLayerFB

Layout


 struct XrPassthroughLayerCreateInfoFB {
     XrStructureType type;
     void const * next;
     XrPassthroughFB passthrough;
     XrPassthroughFlagsFB flags;
     XrPassthroughLayerPurposeFB purpose;
 }
  • Field Details

    • SIZEOF

      public static final int SIZEOF
      The struct size in bytes.
    • ALIGNOF

      public static final int ALIGNOF
      The struct alignment in bytes.
    • TYPE

      public static final int TYPE
      The struct member offsets.
    • NEXT

      public static final int NEXT
      The struct member offsets.
    • PASSTHROUGH

      public static final int PASSTHROUGH
      The struct member offsets.
    • FLAGS

      public static final int FLAGS
      The struct member offsets.
    • PURPOSE

      public static final int PURPOSE
      The struct member offsets.
  • Constructor Details

    • XrPassthroughLayerCreateInfoFB

      public XrPassthroughLayerCreateInfoFB(ByteBuffer container)
      Creates a XrPassthroughLayerCreateInfoFB instance at the current position of the specified ByteBuffer 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 Details