Class BGFXInitLimits

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class BGFXInitLimits extends Struct<BGFXInitLimits> implements NativeResource
Configurable runtime limits parameters.

Layout


 struct bgfx_init_limits_t {
     uint16_t maxEncoders();
     uint32_t minResourceCbSize();
     uint32_t transientVbSize();
     uint32_t transientIbSize();
 }
  • Field Details

    • SIZEOF

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

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

      public static final int MAXENCODERS
      The struct member offsets.
    • MINRESOURCECBSIZE

      public static final int MINRESOURCECBSIZE
      The struct member offsets.
    • TRANSIENTVBSIZE

      public static final int TRANSIENTVBSIZE
      The struct member offsets.
    • TRANSIENTIBSIZE

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

    • BGFXInitLimits

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

      public short maxEncoders()
      maximum number of encoder threads
    • minResourceCbSize

      public int minResourceCbSize()
      minimum resource command buffer size
    • transientVbSize

      public int transientVbSize()
      maximum transient vertex buffer size
    • transientIbSize

      public int transientIbSize()
      maximum transient index buffer size
    • maxEncoders

      public BGFXInitLimits maxEncoders(short value)
      Sets the specified value to the maxEncoders() field.
    • minResourceCbSize

      public BGFXInitLimits minResourceCbSize(int value)
      Sets the specified value to the minResourceCbSize() field.
    • transientVbSize

      public BGFXInitLimits transientVbSize(int value)
      Sets the specified value to the transientVbSize() field.
    • transientIbSize

      public BGFXInitLimits transientIbSize(int value)
      Sets the specified value to the transientIbSize() field.
    • set

      public BGFXInitLimits set(short maxEncoders, int minResourceCbSize, int transientVbSize, int transientIbSize)
      Initializes this struct with the specified values.
    • set

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

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

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

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

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

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

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

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

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

      @Deprecated public static BGFXInitLimits callocStack(MemoryStack stack)
      Deprecated.
      Deprecated for removal in 3.4.0. Use calloc(MemoryStack) instead.
    • malloc

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

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

      public static short nmaxEncoders(long struct)
      Unsafe version of maxEncoders().
    • nminResourceCbSize

      public static int nminResourceCbSize(long struct)
      Unsafe version of minResourceCbSize().
    • ntransientVbSize

      public static int ntransientVbSize(long struct)
      Unsafe version of transientVbSize().
    • ntransientIbSize

      public static int ntransientIbSize(long struct)
      Unsafe version of transientIbSize().
    • nmaxEncoders

      public static void nmaxEncoders(long struct, short value)
      Unsafe version of maxEncoders.
    • nminResourceCbSize

      public static void nminResourceCbSize(long struct, int value)
      Unsafe version of minResourceCbSize.
    • ntransientVbSize

      public static void ntransientVbSize(long struct, int value)
      Unsafe version of transientVbSize.
    • ntransientIbSize

      public static void ntransientIbSize(long struct, int value)
      Unsafe version of transientIbSize.