Class XrViewConfigurationDepthRangeEXT

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

public class XrViewConfigurationDepthRangeEXT extends org.lwjgl.system.Struct<XrViewConfigurationDepthRangeEXT> implements org.lwjgl.system.NativeResource
View configuration depth range information.
Description

When enumerating the view configurations with EnumerateViewConfigurationViews, the application can provide a pointer to an XrViewConfigurationDepthRangeEXT in the next chain of XrViewConfigurationView.

Valid Usage (Implicit)
See Also

XrViewConfigurationView, EnumerateViewConfigurationViews

Layout


 struct XrViewConfigurationDepthRangeEXT {
     XrStructureType type();
     void * next();
     float recommendedNearZ();
     float minNearZ();
     float recommendedFarZ();
     float maxFarZ();
 }
  • 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.
    • RECOMMENDEDNEARZ

      public static final int RECOMMENDEDNEARZ
      The struct member offsets.
    • MINNEARZ

      public static final int MINNEARZ
      The struct member offsets.
    • RECOMMENDEDFARZ

      public static final int RECOMMENDEDFARZ
      The struct member offsets.
    • MAXFARZ

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

    • XrViewConfigurationDepthRangeEXT

      public XrViewConfigurationDepthRangeEXT(ByteBuffer container)
      Creates a XrViewConfigurationDepthRangeEXT 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