Class HiddenAreaMesh

  • All Implemented Interfaces:
    java.lang.AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

    public class HiddenAreaMesh
    extends org.lwjgl.system.Struct
    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 Detail

      • SIZEOF

        The struct size in bytes.
      • ALIGNOF

        The struct alignment in bytes.
      • PVERTEXDATA, UNTRIANGLECOUNT

        The struct member offsets.
    • Constructor Detail

      • HiddenAreaMesh

        public HiddenAreaMesh​(java.nio.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 Detail

      • sizeof

        public int sizeof()
        Specified by:
        sizeof in class org.lwjgl.system.Struct
      • 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

        @Nullable
        public static 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​(long address,
                                                   int capacity)
        Create a HiddenAreaMesh.Buffer instance at the specified memory.
        Parameters:
        address - the memory address
        capacity - the buffer capacity
      • createSafe

        @Nullable
        public static HiddenAreaMesh.Buffer createSafe​(long address,
                                                       int capacity)
        Like create, but returns null if address is NULL.
      • 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.
      • 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:
        stack - the stack from which to allocate
        capacity - the buffer capacity
      • 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:
        stack - the stack from which to allocate
        capacity - the buffer capacity
      • nunTriangleCount

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