omar

Results 1337 comments of omar

Hello, Thanks for your PR! May I ask, what and how do you use the feature for? I feel like it it would be preferable to find a way to...

@nathanvoglsam Nathan beware, in git 1 Pull request = 1 branch, if you push to the same branch the subsequent commits with appear in the PR. (I can still easily...

Sorry this is undesirable and especially not in the root folder. dear imgui especially doesn't need or suggest a specific build system and the mere presence of a cmakefile is...

FYI a started a Premake setup for the examples over in the `premake` branch: https://github.com/ocornut/imgui/tree/premake

Perhaps this is not the best place to discuss it, but I would be interested if someone can craft a cmake setup that would mimic this premake file from this...

Thank you! It would be good if the coding style matched closely the one used by imgui and it's example. I feel that caring for details is generally a good...

Don't sweat it too much too, because I'll be reworking the example structure in the next month-ish so I expect to take over this example anyway (and it'd be easy...

They should all follow the same structure. In your case the GLFW+GL3 example for the GL part, and the DirectX11 example for the Win32 part.

@n00bmind Note that the examples/ have been refactored very recently. It would be easier today to recreate something like your PR by combining imgui_impl_win32.cpp and e.g. imgui_impl_opengl2.cpp and the missing...

Thanks! (yeah it's a common git pitfall when making PR, git associate 1 PR to 1 branch, so further commits are added to the PR.) I initially choose gl3w for...