We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eeb4c5a commit e8d6994Copy full SHA for e8d6994
libs/imgui/imconfig.h
@@ -117,7 +117,9 @@
117
// Your renderer backend will need to support it (most example renderer backends support both 16/32-bit indices).
118
// Another way to allow large meshes while keeping 16-bit indices is to handle ImDrawCmd::VtxOffset in your renderer.
119
// Read about ImGuiBackendFlags_RendererHasVtxOffset for details.
120
-//#define ImDrawIdx unsigned int
+#ifdef IMGUI_USE_32BIT_DRAW_INDEX
121
+#define ImDrawIdx unsigned int
122
+#endif
123
124
//---- Override ImDrawCallback signature (will need to modify renderer backends accordingly)
125
//struct ImDrawList;
0 commit comments