Ginger3D/src/main/java/com/github/hydos/ginger/engine/vulkan/render/ubo/UboDescriptor.java

9 lines
255 B
Java

package com.github.hydos.ginger.engine.vulkan.render.ubo;
public class UboDescriptor
{
public long memory; //Memory location
public long buffer; //the Buffer?
public long offset; //some offset from the memory location
public long range; // the size
}