Class AutomationEvent

java.lang.Object
com.raylib.jextract.AutomationEvent

public class AutomationEvent extends Object
struct AutomationEvent {
    unsigned int frame;
    unsigned int type;
    int params[4];
}
  • Method Details

    • layout

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

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

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

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

      public static void frame(MemorySegment struct, int fieldValue)
      Setter for field:
      unsigned int frame
      
    • type$layout

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

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

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

      public static void type(MemorySegment struct, int fieldValue)
      Setter for field:
      unsigned int type
      
    • params$layout

      public static final SequenceLayout params$layout()
      Layout for field:
      int params[4]
      
    • params$offset

      public static final long params$offset()
      Offset for field:
      int params[4]
      
    • params

      public static MemorySegment params(MemorySegment struct)
      Getter for field:
      int params[4]
      
    • params

      public static void params(MemorySegment struct, MemorySegment fieldValue)
      Setter for field:
      int params[4]
      
    • params$dimensions

      public static long[] params$dimensions()
      Dimensions for array field:
      int params[4]
      
    • params

      public static int params(MemorySegment struct, long index0)
      Indexed getter for field:
      int params[4]
      
    • params

      public static void params(MemorySegment struct, long index0, int fieldValue)
      Indexed setter for field:
      int params[4]
      
    • 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()