Package imgui
Class ImDrawData
java.lang.Object
imgui.ImDrawData
public final class ImDrawData
extends java.lang.Object
All draw data to render a Dear ImGui frame.
BINDING NOTICE: DO NOT TRY TO MODIFY FIELDS OF THIS CLASS MANUALLY! You should only access their values after
ImGui.render()
call.-
Field Summary
Fields Modifier and Type Field Description static int
CMD_BUFFER_SIZE
java.nio.ByteBuffer
cmdByteBuffer
int
cmdListsCount
float
displayPosX
float
displayPosY
float
displaySizeX
float
displaySizeY
float
framebufferScaleX
float
framebufferScaleY
static int
I_BUFFER_SIZE
java.nio.ByteBuffer
iByteBuffer
int
totalIdxCount
int
totalVtxCount
static int
V_BUFFER_SIZE
java.nio.ByteBuffer
vByteBuffer
-
Method Summary
-
Field Details
-
V_BUFFER_SIZE
public static final int V_BUFFER_SIZE- See Also:
- Constant Field Values
-
I_BUFFER_SIZE
public static final int I_BUFFER_SIZE- See Also:
- Constant Field Values
-
CMD_BUFFER_SIZE
public static final int CMD_BUFFER_SIZE- See Also:
- Constant Field Values
-
vByteBuffer
public java.nio.ByteBuffer vByteBuffer -
iByteBuffer
public java.nio.ByteBuffer iByteBuffer -
cmdByteBuffer
public java.nio.ByteBuffer cmdByteBuffer -
totalIdxCount
public int totalIdxCount -
totalVtxCount
public int totalVtxCount -
cmdListsCount
public int cmdListsCount -
displayPosX
public float displayPosX -
displayPosY
public float displayPosY -
displaySizeX
public float displaySizeX -
displaySizeY
public float displaySizeY -
framebufferScaleX
public float framebufferScaleX -
framebufferScaleY
public float framebufferScaleY
-