Class Texture

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

public class Texture extends org.lwjgl.system.Struct<Texture> implements org.lwjgl.system.NativeResource

Layout


 struct Texture_t {
     void * handle;
     ETextureType eType();
     EColorSpace eColorSpace();
 }
  • Field Details

    • SIZEOF

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

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

      public static final int HANDLE
      The struct member offsets.
    • ETYPE

      public static final int ETYPE
      The struct member offsets.
    • ECOLORSPACE

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

    • Texture

      public Texture(ByteBuffer container)
      Creates a Texture 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<Texture>
    • handle

      public long handle()
      Returns:
      the value of the handle field.
    • eType

      public int eType()
    • eColorSpace

      public int eColorSpace()
    • handle

      public Texture handle(long value)
      Sets the specified value to the handle field.
    • eType

      public Texture eType(int value)
      Sets the specified value to the eType() field.
    • eColorSpace

      public Texture eColorSpace(int value)
      Sets the specified value to the eColorSpace() field.
    • set

      public Texture set(long handle, int eType, int eColorSpace)
      Initializes this struct with the specified values.
    • set

      public Texture set(Texture src)
      Copies the specified struct data to this struct.
      Parameters:
      src - the source struct
      Returns:
      this struct
    • malloc

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

      @Deprecated public static Texture.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 Texture.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 Texture malloc(org.lwjgl.system.MemoryStack stack)
      Returns a new Texture instance allocated on the specified MemoryStack.
      Parameters:
      stack - the stack from which to allocate
    • calloc

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

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

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

      public static long nhandle(long struct)
      Unsafe version of handle().
    • neType

      public static int neType(long struct)
      Unsafe version of eType().
    • neColorSpace

      public static int neColorSpace(long struct)
      Unsafe version of eColorSpace().
    • nhandle

      public static void nhandle(long struct, long value)
      Unsafe version of handle.
    • neType

      public static void neType(long struct, int value)
      Unsafe version of eType.
    • neColorSpace

      public static void neColorSpace(long struct, int value)
      Unsafe version of eColorSpace.
    • validate

      public static void validate(long struct)
      Validates pointer members that should not be NULL.
      Parameters:
      struct - the struct to validate