VulkanShader_1.21.10-0.0.4-alpha.jar

Download file
    package net.vulkanmod.vulkan.memory.buffer;

public class BufferSlice {
   Buffer buffer;
   int offset;
   int size;

   public void set(Buffer buffer, int offset, int size) {
      this.buffer = buffer;
      this.offset = offset;
      this.size = size;
   }

   public Buffer getBuffer() {
      return this.buffer;
   }

   public int getOffset() {
      return this.offset;
   }

   public int getSize() {
      return this.size;
   }
}
    
Download file