Class BoneInfo

java.lang.Object
com.raylib.jextract.BoneInfo

public class BoneInfo extends Object
struct BoneInfo {
    char name[32];
    int parent;
}
  • Method Details

    • layout

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

      public static final SequenceLayout name$layout()
      Layout for field:
      char name[32]
      
    • name$offset

      public static final long name$offset()
      Offset for field:
      char name[32]
      
    • name

      public static MemorySegment name(MemorySegment struct)
      Getter for field:
      char name[32]
      
    • name

      public static void name(MemorySegment struct, MemorySegment fieldValue)
      Setter for field:
      char name[32]
      
    • name$dimensions

      public static long[] name$dimensions()
      Dimensions for array field:
      char name[32]
      
    • name

      public static byte name(MemorySegment struct, long index0)
      Indexed getter for field:
      char name[32]
      
    • name

      public static void name(MemorySegment struct, long index0, byte fieldValue)
      Indexed setter for field:
      char name[32]
      
    • parent$layout

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

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

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

      public static void parent(MemorySegment struct, int fieldValue)
      Setter for field:
      int parent
      
    • 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()