Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/imgui
diff options
context:
space:
mode:
authorBartosz Taudul <wolf.pld@gmail.com>2017-09-21 03:15:48 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2017-09-21 03:15:48 +0300
commit6217c830a9c4cf7621892fdb160c45232038a387 (patch)
treeba9b2dbdc3d254ec33abad858c6a151cbd774fbf /imgui
parent9da7e58ec5125b2f11a2a31f75f7a15868169f96 (diff)
64K indices is not enough.
Diffstat (limited to 'imgui')
-rwxr-xr-ximgui/imconfig.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/imgui/imconfig.h b/imgui/imconfig.h
index e557fa06..894f24e4 100755
--- a/imgui/imconfig.h
+++ b/imgui/imconfig.h
@@ -45,7 +45,7 @@
*/
//---- Use 32-bit vertex indices (instead of default: 16-bit) to allow meshes with more than 64K vertices
-//#define ImDrawIdx unsigned int
+#define ImDrawIdx unsigned int
//---- Tip: You can add extra functions within the ImGui:: namespace, here or in your own headers files.
//---- e.g. create variants of the ImGui::Value() helper for your low-level math types, or your own widgets/helpers.