Class AITexel

  • All Implemented Interfaces:
    org.lwjgl.system.Pointer


    public class AITexel
    extends org.lwjgl.system.Struct
    Helper structure to represent a texel in a ARGB8888 format. Used by aiTexture.

    Member documentation

    • b – The blue color component
    • g – The green color component
    • r – The red color component
    • a – The alpha color component

    Layout

     struct aiTexel {
         unsigned char b;
         unsigned char g;
         unsigned char r;
         unsigned char a;
     }
    • Nested Class Summary

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

        org.lwjgl.system.Pointer.Default
    • Field Summary

      Fields 
      Modifier and Type Field and Description
      static int SIZEOF
      The struct size in bytes.
      • Fields inherited from interface org.lwjgl.system.Pointer

        POINTER_SHIFT, POINTER_SIZE
    • Constructor Summary

      Constructors 
      Constructor and Description
      AITexel(java.nio.ByteBuffer container)
      Creates a AITexel instance at the current position of the specified ByteBuffer container.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      byte a()
      Returns the value of the a field.
      byte b()
      Returns the value of the b field.
      static AITexel create(long address)
      Returns a new AITexel instance for the specified memory address.
      static AITexel.Buffer create(long address, int capacity)
      Create a AITexel.Buffer instance at the specified memory.
      static AITexel createSafe(long address)
      Like create, but returns null if address is NULL.
      static AITexel.Buffer createSafe(long address, int capacity)
      Like create, but returns null if address is NULL.
      byte g()
      Returns the value of the g field.
      byte r()
      Returns the value of the r field.
      int sizeof() 
      • Methods inherited from class org.lwjgl.system.Struct

        clear, free, isNull
      • Methods inherited from class org.lwjgl.system.Pointer.Default

        address, equals, hashCode, toString
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Field Detail

      • SIZEOF

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

      • AITexel

        public AITexel(java.nio.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 Detail

      • sizeof

        public int sizeof()
        Specified by:
        sizeof in class org.lwjgl.system.Struct
      • 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

        @Nullable
        public static 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

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