Class CLNameVersion

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

    public class CLNameVersion
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource

    Layout

    
     struct cl_name_version {
         cl_version version;
         char name[64];
     }
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  CLNameVersion.Buffer
      An array of CLNameVersion structs.
      • Nested classes/interfaces inherited from interface org.lwjgl.system.Pointer

        org.lwjgl.system.Pointer.Default
      • Nested classes/interfaces inherited from class org.lwjgl.system.Struct

        org.lwjgl.system.Struct.StructValidation
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int ALIGNOF
      The struct alignment in bytes.
      static int NAME
      The struct member offsets.
      static int SIZEOF
      The struct size in bytes.
      static int VERSION
      The struct member offsets.
      • Fields inherited from interface org.lwjgl.system.Pointer

        BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE
    • Constructor Summary

      Constructors 
      Constructor Description
      CLNameVersion​(java.nio.ByteBuffer container)
      Creates a CLNameVersion instance at the current position of the specified ByteBuffer container.
    • Field Detail

      • SIZEOF

        The struct size in bytes.
      • ALIGNOF

        The struct alignment in bytes.
      • VERSION, NAME

        The struct member offsets.
    • Constructor Detail

      • CLNameVersion

        public CLNameVersion​(java.nio.ByteBuffer container)
        Creates a CLNameVersion 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
      • version

        public int version()
        Returns:
        the value of the version field.
      • name

        public java.nio.ByteBuffer name()
        Returns:
        a ByteBuffer view of the name field.
      • nameString

        public java.lang.String nameString()
        Returns:
        the null-terminated string stored in the name field.
      • malloc

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

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

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

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

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

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

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

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

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

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

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

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

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

        public static int nversion​(long struct)
        Unsafe version of version().
      • nname

        public static java.nio.ByteBuffer nname​(long struct)
        Unsafe version of name().
      • nnameString

        public static java.lang.String nnameString​(long struct)
        Unsafe version of nameString().