Class NVGLUFramebufferBGFX

All Implemented Interfaces:
Pointer

public class NVGLUFramebufferBGFX extends Struct<NVGLUFramebufferBGFX>

 struct NVGLUframebuffer {
     NVGcontext * ctx;
     bgfx_frame_buffer_handle_t handle;
     int image;
     bgfx_view_id_t viewId;
 }
  • Field Details

    • SIZEOF

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

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

      public static final int CTX
      The struct member offsets.
    • HANDLE

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

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

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

    • NVGLUFramebufferBGFX

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

      public long ctx()
      Returns:
      the value of the ctx field.
    • handle

      public short handle()
      Returns:
      the value of the handle field.
    • image

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

      public short viewId()
      Returns:
      the value of the viewId field.
    • create

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

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

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

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

      public static long nctx(long struct)
      Unsafe version of ctx().
    • nhandle

      public static short nhandle(long struct)
      Unsafe version of handle().
    • nimage

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

      public static short nviewId(long struct)
      Unsafe version of viewId().