From 51f989724b52b5f84f0b3d3c444b946fdabcb46e Mon Sep 17 00:00:00 2001 From: Allen Dang Date: Fri, 4 Feb 2022 11:12:09 +0800 Subject: [PATCH] Enable 32-bit vertex indices. --- imguiWrappedHeader.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/imguiWrappedHeader.h b/imguiWrappedHeader.h index 13626cc5..de2d951e 100644 --- a/imguiWrappedHeader.h +++ b/imguiWrappedHeader.h @@ -3,4 +3,6 @@ // This header is for use within the wrapper sources to ensure identical inclusion // of the core imgui header with all the various options. +#define ImDrawIdx unsigned int + #include "imgui.h"