Class AITexel

All Implemented Interfaces:
Pointer

public class AITexel extends Struct<AITexel>

 struct aiTexel {
     unsigned char b;
     unsigned char g;
     unsigned char r;
     unsigned char a;
 }
  • Field Details

    • SIZEOF

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

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

      public static final int B
      The struct member offsets.
    • G

      public static final int G
      The struct member offsets.
    • R

      public static final int R
      The struct member offsets.
    • A

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

    • AITexel

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

      public byte b()
      Returns:
      the value of the b field.
    • g

      public byte g()
      Returns:
      the value of the g field.
    • r

      public byte r()
      Returns:
      the value of the r field.
    • a

      public byte a()
      Returns:
      the value of the a field.
    • create

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

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

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

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

      public static byte nb(long struct)
      Unsafe version of b().
    • ng

      public static byte ng(long struct)
      Unsafe version of g().
    • nr

      public static byte nr(long struct)
      Unsafe version of r().
    • na

      public static byte na(long struct)
      Unsafe version of a().