Package org.lwjgl.ovr

Class OVRColorf

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


    public class OVRColorf
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource
    An RGBA color with normalized float components.

    Member documentation

    • r – the R component
    • g – the G component
    • b – the B component
    • a – the A component

    Layout

     struct ovrColorf {
         float r;
         float g;
         float b;
         float a;
     }
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class and Description
      static class  OVRColorf.Buffer
      An array of OVRColorf 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
      OVRColorf(java.nio.ByteBuffer container)
      Creates a OVRColorf instance at the current position of the specified ByteBuffer container.
    • Field Detail

      • SIZEOF

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

      • OVRColorf

        public OVRColorf(java.nio.ByteBuffer container)
        Creates a OVRColorf 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
      • 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.
      • r

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

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

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

        public OVRColorf a(float value)
        Sets the specified value to the a field.
      • set

        public OVRColorf set(float r,
                             float g,
                             float b,
                             float a)
        Initializes this struct with the specified values.
      • set

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

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

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

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

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

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

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

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

        public static OVRColorf.Buffer create(int capacity)
        Returns a new OVRColorf.Buffer instance allocated with BufferUtils.
        Parameters:
        capacity - the buffer capacity
      • create

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

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

        public static OVRColorf mallocStack()
        Returns a new OVRColorf instance allocated on the thread-local MemoryStack.
      • callocStack

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

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

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

        public static OVRColorf.Buffer mallocStack(int capacity)
        Returns a new OVRColorf.Buffer instance allocated on the thread-local MemoryStack.
        Parameters:
        capacity - the buffer capacity
      • callocStack

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

        public static OVRColorf.Buffer mallocStack(int capacity,
                                                   org.lwjgl.system.MemoryStack stack)
        Returns a new OVRColorf.Buffer instance allocated on the specified MemoryStack.
        Parameters:
        stack - the stack from which to allocate
        capacity - the buffer capacity
      • callocStack

        public static OVRColorf.Buffer callocStack(int capacity,
                                                   org.lwjgl.system.MemoryStack stack)
        Returns a new OVRColorf.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