Class VkTransformMatrixNV

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

public class VkTransformMatrixNV extends VkTransformMatrixKHR
See VkTransformMatrixKHR.

Layout


 struct VkTransformMatrixNV {
     float matrix[3][4];
 }
  • Constructor Details

    • VkTransformMatrixNV

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

    • matrix

      public VkTransformMatrixNV matrix(FloatBuffer value)
      Copies the specified FloatBuffer to the matrix field.
      Overrides:
      matrix in class VkTransformMatrixKHR
    • matrix

      public VkTransformMatrixNV matrix(int index, float value)
      Sets the specified value at the specified index of the matrix field.
      Overrides:
      matrix in class VkTransformMatrixKHR
    • set

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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