Class NVGColor

  • All Implemented Interfaces:
    java.lang.AutoCloseable, NativeResource, Pointer


    public class NVGColor
    extends Struct
    A NanoVG color.

    Member documentation

    • rgba – an array of 4 color components
    • r – the color red component
    • g – the color green component
    • b – the color blue component
    • a – the color alpha component

    Layout

    struct NVGcolor {
        union {
            float[4] rgba;
            struct {
                float r;
                float g;
                float b;
                float a;
            };
        };
    }
    • Field Detail

      • SIZEOF

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

      • NVGColor

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

        public java.nio.FloatBuffer rgba()
        Returns a FloatBuffer view of the rgba field.
      • rgba

        public float rgba(int index)
        Returns the value at the specified index of the rgba field.
      • r

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

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

        public float b()
        Returns the value of the b field.
      • a

        public float a()
        Returns the value of the a field.
      • rgba

        public NVGColor rgba(java.nio.FloatBuffer value)
        Copies the specified FloatBuffer to the rgba field.
      • rgba

        public NVGColor rgba(int index,
                             float value)
        Sets the specified value at the specified index of the rgba field.
      • r

        public NVGColor r(float value)
        Sets the specified value to the r field.
      • g

        public NVGColor g(float value)
        Sets the specified value to the g field.
      • b

        public NVGColor b(float value)
        Sets the specified value to the b field.
      • a

        public NVGColor a(float value)
        Sets the specified value to the a field.
      • nset

        public NVGColor nset(long struct)
        Unsafe version of set.
      • set

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

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

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

        public static NVGColor create(long address)
        Returns a new NVGColor instance for the specified memory address or null if the address is NULL.
      • malloc

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

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

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

        public static NVGColor callocStack()
        Returns a new NVGColor instance allocated on the thread-local MemoryStack and initializes all its bits to zero.
      • mallocStack

        public static NVGColor mallocStack(MemoryStack stack)
        Returns a new NVGColor instance allocated on the specified MemoryStack.
        Parameters:
        stack - the stack from which to allocate
      • callocStack

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

        public static NVGColor.Buffer callocStack(int capacity)
        Returns a new NVGColor.Buffer instance allocated on the thread-local MemoryStack and initializes all its bits to zero.
        Parameters:
        capacity - the buffer capacity
      • callocStack

        public static NVGColor.Buffer callocStack(int capacity,
                                                  MemoryStack stack)
        Returns a new NVGColor.Buffer instance allocated on the specified MemoryStack and initializes all its bits to zero.
        Parameters:
        stack - the stack from which to allocate
        capacity - the buffer capacity