Class BGFXCapsGPU

All Implemented Interfaces:
Pointer

public class BGFXCapsGPU extends Struct<BGFXCapsGPU>

 struct bgfx_caps_gpu_t {
     uint16_t vendorId;
     uint16_t deviceId;
 }
  • Field Details

    • SIZEOF

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

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

      public static final int VENDORID
      The struct member offsets.
    • DEVICEID

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

    • BGFXCapsGPU

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

      public short vendorId()
      Returns:
      the value of the vendorId field.
    • deviceId

      public short deviceId()
      Returns:
      the value of the deviceId field.
    • create

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

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

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

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

      public static short nvendorId(long struct)
      Unsafe version of vendorId().
    • ndeviceId

      public static short ndeviceId(long struct)
      Unsafe version of deviceId().