Class SpvcEntryPoint

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class SpvcEntryPoint extends Struct<SpvcEntryPoint> implements NativeResource

 struct spvc_entry_point {
     SpvExecutionModel execution_model;
     char const * name;
 }
  • Field Details

    • SIZEOF

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

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

      public static final int EXECUTION_MODEL
      The struct member offsets.
    • NAME

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

    • SpvcEntryPoint

      public SpvcEntryPoint(ByteBuffer container)
      Creates a SpvcEntryPoint 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()
      Description copied from class: Struct
      Returns sizeof(struct).
      Specified by:
      sizeof in class Struct<SpvcEntryPoint>
    • execution_model

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

      public ByteBuffer name()
      Returns:
      a ByteBuffer view of the null-terminated string pointed to by the name field.
    • nameString

      public String nameString()
      Returns:
      the null-terminated string pointed to by the name field.
    • execution_model

      public SpvcEntryPoint execution_model(int value)
      Sets the specified value to the execution_model field.
    • name

      public SpvcEntryPoint name(ByteBuffer value)
      Sets the address of the specified encoded string to the name field.
    • set

      public SpvcEntryPoint set(int execution_model, ByteBuffer name)
      Initializes this struct with the specified values.
    • set

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

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

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

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

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

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

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

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

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

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

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

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

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

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

      public static SpvcEntryPoint.Buffer calloc(int capacity, MemoryStack stack)
      Returns a new SpvcEntryPoint.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
    • nexecution_model

      public static int nexecution_model(long struct)
      Unsafe version of execution_model().
    • nname

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

      public static String nnameString(long struct)
      Unsafe version of nameString().
    • nexecution_model

      public static void nexecution_model(long struct, int value)
      Unsafe version of execution_model.
    • nname

      public static void nname(long struct, ByteBuffer value)
      Unsafe version of name.
    • validate

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