Class GLFWVidMode

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


    public class GLFWVidMode
    extends Struct
    Describes a single video mode.

    Member documentation

    • width – the width, in screen coordinates, of the video mode
    • height – the height, in screen coordinates, of the video mode
    • redBits – the bit depth of the red channel of the video mode
    • greenBits – the bit depth of the green channel of the video mode
    • blueBits – the bit depth of the blue channel of the video mode
    • refreshRate – the refresh rate, in Hz, of the video mode

    Layout

    struct GLFWvidmode {
        int width;
        int height;
        int redBits;
        int greenBits;
        int blueBits;
        int refreshRate;
    }
    • Field Detail

      • SIZEOF

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

      • GLFWVidMode

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

        public int width()
        Returns the value of the width field.
      • height

        public int height()
        Returns the value of the height field.
      • redBits

        public int redBits()
        Returns the value of the redBits field.
      • greenBits

        public int greenBits()
        Returns the value of the greenBits field.
      • blueBits

        public int blueBits()
        Returns the value of the blueBits field.
      • refreshRate

        public int refreshRate()
        Returns the value of the refreshRate field.
      • create

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

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

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

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

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

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