Class Image

java.lang.Object
com.raylib.jextract.Image

public class Image extends Object
struct Image {
    void *data;
    int width;
    int height;
    int mipmaps;
    int format;
}
  • Method Details

    • layout

      public static final GroupLayout layout()
      The layout of this struct
    • data$layout

      public static final AddressLayout data$layout()
      Layout for field:
      void *data
      
    • data$offset

      public static final long data$offset()
      Offset for field:
      void *data
      
    • data

      public static MemorySegment data(MemorySegment struct)
      Getter for field:
      void *data
      
    • data

      public static void data(MemorySegment struct, MemorySegment fieldValue)
      Setter for field:
      void *data
      
    • width$layout

      public static final ValueLayout.OfInt width$layout()
      Layout for field:
      int width
      
    • width$offset

      public static final long width$offset()
      Offset for field:
      int width
      
    • width

      public static int width(MemorySegment struct)
      Getter for field:
      int width
      
    • width

      public static void width(MemorySegment struct, int fieldValue)
      Setter for field:
      int width
      
    • height$layout

      public static final ValueLayout.OfInt height$layout()
      Layout for field:
      int height
      
    • height$offset

      public static final long height$offset()
      Offset for field:
      int height
      
    • height

      public static int height(MemorySegment struct)
      Getter for field:
      int height
      
    • height

      public static void height(MemorySegment struct, int fieldValue)
      Setter for field:
      int height
      
    • mipmaps$layout

      public static final ValueLayout.OfInt mipmaps$layout()
      Layout for field:
      int mipmaps
      
    • mipmaps$offset

      public static final long mipmaps$offset()
      Offset for field:
      int mipmaps
      
    • mipmaps

      public static int mipmaps(MemorySegment struct)
      Getter for field:
      int mipmaps
      
    • mipmaps

      public static void mipmaps(MemorySegment struct, int fieldValue)
      Setter for field:
      int mipmaps
      
    • format$layout

      public static final ValueLayout.OfInt format$layout()
      Layout for field:
      int format
      
    • format$offset

      public static final long format$offset()
      Offset for field:
      int format
      
    • format

      public static int format(MemorySegment struct)
      Getter for field:
      int format
      
    • format

      public static void format(MemorySegment struct, int fieldValue)
      Setter for field:
      int format
      
    • asSlice

      public static MemorySegment asSlice(MemorySegment array, long index)
      Obtains a slice of arrayParam which selects the array element at index. The returned segment has address arrayParam.address() + index * layout().byteSize()
    • sizeof

      public static long sizeof()
      The size (in bytes) of this struct
    • allocate

      public static MemorySegment allocate(SegmentAllocator allocator)
      Allocate a segment of size layout().byteSize() using allocator
    • allocateArray

      public static MemorySegment allocateArray(long elementCount, SegmentAllocator allocator)
      Allocate an array of size elementCount using allocator. The returned segment has size elementCount * layout().byteSize().
    • reinterpret

      public static MemorySegment reinterpret(MemorySegment addr, Arena arena, Consumer<MemorySegment> cleanup)
      Reinterprets addr using target arena and cleanupAction (if any). The returned segment has size layout().byteSize()
    • reinterpret

      public static MemorySegment reinterpret(MemorySegment addr, long elementCount, Arena arena, Consumer<MemorySegment> cleanup)
      Reinterprets addr using target arena and cleanupAction (if any). The returned segment has size elementCount * layout().byteSize()