Class Music

java.lang.Object
com.raylib.jextract.Music

public class Music extends Object
struct Music {
    AudioStream stream;
    unsigned int frameCount;
    bool looping;
    int ctxType;
    void *ctxData;
}
  • Method Details

    • layout

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

      public static final GroupLayout stream$layout()
      Layout for field:
      AudioStream stream
      
    • stream$offset

      public static final long stream$offset()
      Offset for field:
      AudioStream stream
      
    • stream

      public static MemorySegment stream(MemorySegment struct)
      Getter for field:
      AudioStream stream
      
    • stream

      public static void stream(MemorySegment struct, MemorySegment fieldValue)
      Setter for field:
      AudioStream stream
      
    • frameCount$layout

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

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

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

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

      public static final ValueLayout.OfBoolean looping$layout()
      Layout for field:
      bool looping
      
    • looping$offset

      public static final long looping$offset()
      Offset for field:
      bool looping
      
    • looping

      public static boolean looping(MemorySegment struct)
      Getter for field:
      bool looping
      
    • looping

      public static void looping(MemorySegment struct, boolean fieldValue)
      Setter for field:
      bool looping
      
    • ctxType$layout

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

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

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

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

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

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

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

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