Class HiddenAreaMesh

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

public class HiddenAreaMesh extends org.lwjgl.system.Struct<HiddenAreaMesh> implements org.lwjgl.system.NativeResource
The mesh to draw into the stencil (or depth) buffer to perform early stencil (or depth) kills of pixels that will never appear on the HMD. This mesh draws on all the pixels that will be hidden after distortion.

If the HMD does not provide a visible area mesh pVertexData will be NULL and unTriangleCount will be 0.

Layout


 struct HiddenAreaMesh_t {
     HmdVector2_t * pVertexData;
     uint32_t unTriangleCount;
 }
  • Field Details

    • SIZEOF

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

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

      public static final int PVERTEXDATA
      The struct member offsets.
    • UNTRIANGLECOUNT

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

    • HiddenAreaMesh

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

    • sizeof

      public int sizeof()
      Specified by:
      sizeof in class org.lwjgl.system.Struct<HiddenAreaMesh>
    • pVertexData

      public @Nullable HmdVector2.Buffer pVertexData()
      Returns:
      a HmdVector2.Buffer view of the struct array pointed to by the pVertexData field.
    • unTriangleCount

      public int unTriangleCount()
      Returns:
      the value of the unTriangleCount field.
    • malloc

      public static HiddenAreaMesh malloc()
      Returns a new HiddenAreaMesh instance allocated with memAlloc. The instance must be explicitly freed.
    • calloc

      public static HiddenAreaMesh calloc()
      Returns a new HiddenAreaMesh instance allocated with memCalloc. The instance must be explicitly freed.
    • create

      public static HiddenAreaMesh create()
      Returns a new HiddenAreaMesh instance allocated with BufferUtils.
    • create

      public static HiddenAreaMesh create(long address)
      Returns a new HiddenAreaMesh instance for the specified memory address.
    • createSafe

      public static @Nullable HiddenAreaMesh createSafe(long address)
      Like create, but returns null if address is NULL.
    • malloc

      public static HiddenAreaMesh.Buffer malloc(int capacity)
      Returns a new HiddenAreaMesh.Buffer instance allocated with memAlloc. The instance must be explicitly freed.
      Parameters:
      capacity - the buffer capacity
    • calloc

      public static HiddenAreaMesh.Buffer calloc(int capacity)
      Returns a new HiddenAreaMesh.Buffer instance allocated with memCalloc. The instance must be explicitly freed.
      Parameters:
      capacity - the buffer capacity
    • create

      public static HiddenAreaMesh.Buffer create(int capacity)
      Returns a new HiddenAreaMesh.Buffer instance allocated with BufferUtils.
      Parameters:
      capacity - the buffer capacity
    • create

      public static HiddenAreaMesh.Buffer create(long address, int capacity)
      Create a HiddenAreaMesh.Buffer instance at the specified memory.
      Parameters:
      address - the memory address
      capacity - the buffer capacity
    • createSafe

      public static @Nullable HiddenAreaMesh.Buffer createSafe(long address, int capacity)
      Like create, but returns null if address is NULL.
    • mallocStack

      @Deprecated public static HiddenAreaMesh mallocStack()
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(MemoryStack) instead.
    • callocStack

      @Deprecated public static HiddenAreaMesh callocStack()
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(MemoryStack) instead.
    • mallocStack

      @Deprecated public static HiddenAreaMesh mallocStack(org.lwjgl.system.MemoryStack stack)
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(MemoryStack) instead.
    • callocStack

      @Deprecated public static HiddenAreaMesh callocStack(org.lwjgl.system.MemoryStack stack)
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(MemoryStack) instead.
    • mallocStack

      @Deprecated public static HiddenAreaMesh.Buffer mallocStack(int capacity)
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(int, MemoryStack) instead.
    • callocStack

      @Deprecated public static HiddenAreaMesh.Buffer callocStack(int capacity)
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(int, MemoryStack) instead.
    • mallocStack

      @Deprecated public static HiddenAreaMesh.Buffer mallocStack(int capacity, org.lwjgl.system.MemoryStack stack)
      Deprecated.
      Deprecated for removal in 3.4.0. Use malloc(int, MemoryStack) instead.
    • callocStack

      @Deprecated public static HiddenAreaMesh.Buffer callocStack(int capacity, org.lwjgl.system.MemoryStack stack)
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(int, MemoryStack) instead.
    • malloc

      public static HiddenAreaMesh malloc(org.lwjgl.system.MemoryStack stack)
      Returns a new HiddenAreaMesh instance allocated on the specified MemoryStack.
      Parameters:
      stack - the stack from which to allocate
    • calloc

      public static HiddenAreaMesh calloc(org.lwjgl.system.MemoryStack stack)
      Returns a new HiddenAreaMesh instance allocated on the specified MemoryStack and initializes all its bits to zero.
      Parameters:
      stack - the stack from which to allocate
    • malloc

      public static HiddenAreaMesh.Buffer malloc(int capacity, org.lwjgl.system.MemoryStack stack)
      Returns a new HiddenAreaMesh.Buffer instance allocated on the specified MemoryStack.
      Parameters:
      capacity - the buffer capacity
      stack - the stack from which to allocate
    • calloc

      public static HiddenAreaMesh.Buffer calloc(int capacity, org.lwjgl.system.MemoryStack stack)
      Returns a new HiddenAreaMesh.Buffer instance allocated on the specified MemoryStack and initializes all its bits to zero.
      Parameters:
      capacity - the buffer capacity
      stack - the stack from which to allocate
    • npVertexData

      public static @Nullable HmdVector2.Buffer npVertexData(long struct)
      Unsafe version of pVertexData().
    • nunTriangleCount

      public static int nunTriangleCount(long struct)
      Unsafe version of unTriangleCount().