Class NkDrawNullTexture

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

    public class NkDrawNullTexture
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource

    Member documentation

    • texture – texture handle to a texture with a white pixel
    • uv – coordinates to a white pixel in the texture

    Layout

    
     struct nk_draw_null_texture {
         nk_handle texture;
         struct nk_vec2 uv;
     }
    • Field Detail

      • SIZEOF

        The struct size in bytes.
      • ALIGNOF

        The struct alignment in bytes.
      • TEXTURE, UV

        The struct member offsets.
    • Constructor Detail

      • NkDrawNullTexture

        public NkDrawNullTexture​(java.nio.ByteBuffer container)
        Creates a NkDrawNullTexture 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
      • texture

        public NkHandle texture()
        Returns a NkHandle view of the texture field.
      • uv

        public NkVec2 uv()
        Returns a NkVec2 view of the uv field.
      • texture

        public NkDrawNullTexture texture​(java.util.function.Consumer<NkHandle> consumer)
        Passes the texture field to the specified Consumer.
      • uv

        public NkDrawNullTexture uv​(java.util.function.Consumer<NkVec2> consumer)
        Passes the uv field to the specified Consumer.
      • malloc

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

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

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

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

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

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

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

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

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

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

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

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

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

        public static NkHandle ntexture​(long struct)
        Unsafe version of texture().
      • nuv

        public static NkVec2 nuv​(long struct)
        Unsafe version of uv().
      • ntexture

        public static void ntexture​(long struct,
                                    NkHandle value)
        Unsafe version of texture.
      • nuv

        public static void nuv​(long struct,
                               NkVec2 value)
        Unsafe version of uv.