Class VkAabbPositionsNV

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkAabbPositionsKHR>
org.lwjgl.vulkan.VkAabbPositionsKHR
org.lwjgl.vulkan.VkAabbPositionsNV
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class VkAabbPositionsNV extends VkAabbPositionsKHR
See VkAabbPositionsKHR.

Layout


 struct VkAabbPositionsNV {
     float minX;
     float minY;
     float minZ;
     float maxX;
     float maxY;
     float maxZ;
 }
  • Constructor Details

    • VkAabbPositionsNV

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

    • minX

      public VkAabbPositionsNV minX(float value)
      Sets the specified value to the minX field.
      Overrides:
      minX in class VkAabbPositionsKHR
    • minY

      public VkAabbPositionsNV minY(float value)
      Sets the specified value to the minY field.
      Overrides:
      minY in class VkAabbPositionsKHR
    • minZ

      public VkAabbPositionsNV minZ(float value)
      Sets the specified value to the minZ field.
      Overrides:
      minZ in class VkAabbPositionsKHR
    • maxX

      public VkAabbPositionsNV maxX(float value)
      Sets the specified value to the maxX field.
      Overrides:
      maxX in class VkAabbPositionsKHR
    • maxY

      public VkAabbPositionsNV maxY(float value)
      Sets the specified value to the maxY field.
      Overrides:
      maxY in class VkAabbPositionsKHR
    • maxZ

      public VkAabbPositionsNV maxZ(float value)
      Sets the specified value to the maxZ field.
      Overrides:
      maxZ in class VkAabbPositionsKHR
    • set

      public VkAabbPositionsNV set(float minX, float minY, float minZ, float maxX, float maxY, float maxZ)
      Initializes this struct with the specified values.
      Overrides:
      set in class VkAabbPositionsKHR
    • set

      Copies the specified struct data to this struct.
      Parameters:
      src - the source struct
      Returns:
      this struct
    • malloc

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

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

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

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

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

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

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

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

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

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

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

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

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

      public static VkAabbPositionsNV.Buffer calloc(int capacity, org.lwjgl.system.MemoryStack stack)
      Returns a new VkAabbPositionsNV.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