-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
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
Whitelist certain internal functions #118
Conversation
The |
@ptxmac maybe it is possible to do this on cimgui level? |
@gucio321 the functions are already in definitions.json, but the codegen ignores all functions coming from "imgui_internal". |
interessting... Why exactly did we exclude them? Maybe we'd rather focus on fixing this compilation issue? @AllenDang? |
@gucio321 I'd rather focus on fixing the compilation issue... |
A quick snapshot of some of the errors if we generate all internal functions:
|
well, in my opinion we may rename thing coming from imgui-internal to "InternalXYZ". This way we will not have duplicates and everyone will know what is going on. |
Superseded by #119 |
Some of the functions in
imgui_internal
can be useful, and sometimes the only way to archive a certain feature.My use-case is a window that doesn't respond to hit test for a section where I'm displaying a texture. This will forward the mouse / keyboard events to the rest of my app instead.