Class MaterialMap

java.lang.Object
com.raylib.jextract.MaterialMap

public class MaterialMap extends Object
struct MaterialMap {
    Texture2D texture;
    Color color;
    float value;
}
  • Method Details

    • layout

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

      public static final GroupLayout texture$layout()
      Layout for field:
      Texture2D texture
      
    • texture$offset

      public static final long texture$offset()
      Offset for field:
      Texture2D texture
      
    • texture

      public static MemorySegment texture(MemorySegment struct)
      Getter for field:
      Texture2D texture
      
    • texture

      public static void texture(MemorySegment struct, MemorySegment fieldValue)
      Setter for field:
      Texture2D texture
      
    • color$layout

      public static final GroupLayout color$layout()
      Layout for field:
      Color color
      
    • color$offset

      public static final long color$offset()
      Offset for field:
      Color color
      
    • color

      public static MemorySegment color(MemorySegment struct)
      Getter for field:
      Color color
      
    • color

      public static void color(MemorySegment struct, MemorySegment fieldValue)
      Setter for field:
      Color color
      
    • value$layout

      public static final ValueLayout.OfFloat value$layout()
      Layout for field:
      float value
      
    • value$offset

      public static final long value$offset()
      Offset for field:
      float value
      
    • value

      public static float value(MemorySegment struct)
      Getter for field:
      float value
      
    • value

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