We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, I'd like to ask for a build option which would enable using 32-bit indices with DearIMGUI.
By default DearIMGUI uses 16-bit indices and uses assert() to check the buffer size. Enabling 32-bit indices is a 2-step process:
assert()
The text was updated successfully, but these errors were encountered:
which asserts do you run into with 16bit indices?
you are likely using the ImDrawList API to get there? Can you show some code that triggers the assert?
also, would implementing ImDrawListFlags_AllowVtxOffset help? ocornut/imgui#2591
Sorry, something went wrong.
No branches or pull requests
Hello,
I'd like to ask for a build option which would enable using 32-bit indices with DearIMGUI.
By default DearIMGUI uses 16-bit indices and uses
assert()
to check the buffer size. Enabling 32-bit indices is a 2-step process:assert()
s: https://github.com/ocornut/imgui/blob/master/imconfig.h#L94-L98The text was updated successfully, but these errors were encountered: