Class NVGLUFramebuffer

All Implemented Interfaces:
Pointer

public class NVGLUFramebuffer extends Struct<NVGLUFramebuffer>

 struct NVGLUframebuffer {
     GLuint fbo;
     GLuint rbo;
     GLuint texture;
     int image;
 }
  • Field Details

    • SIZEOF

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

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

      public static final int FBO
      The struct member offsets.
    • RBO

      public static final int RBO
      The struct member offsets.
    • TEXTURE

      public static final int TEXTURE
      The struct member offsets.
    • IMAGE

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

    • NVGLUFramebuffer

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

      public int fbo()
      Returns:
      the value of the fbo field.
    • rbo

      public int rbo()
      Returns:
      the value of the rbo field.
    • texture

      public int texture()
      Returns:
      the value of the texture field.
    • image

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

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

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

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

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

      public static int nfbo(long struct)
      Unsafe version of fbo().
    • nrbo

      public static int nrbo(long struct)
      Unsafe version of rbo().
    • ntexture

      public static int ntexture(long struct)
      Unsafe version of texture().
    • nimage

      public static int nimage(long struct)
      Unsafe version of image().