Forward declarations
| 133 | |
| 134 | // Forward declarations |
| 135 | struct ImDrawChannel; // Temporary storage to output draw commands out of order, used by ImDrawListSplitter and ImDrawList::ChannelsSplit() |
| 136 | struct ImDrawCmd; // A single draw command within a parent ImDrawList (generally maps to 1 GPU draw call, unless it is a callback) |
| 137 | struct ImDrawData; // All draw command lists required to render the frame + pos/size coordinates to use for the projection matrix. |
| 138 | struct ImDrawList; // A single draw command list (generally one per window, conceptually you may see this as a dynamic "mesh" builder) |