omar

Results 1335 comments of omar

As I understand Wayland currently doesn't permit application to neither set or get position or size of windows (!) which is causing problem to our approach. I don't think that's...

> And, yes, multi-viewports are not supported somehow, but solved by discarding this lineio.BackendFlags |= ImGuiBackendFlags_RendererHasViewports;. You shouldn't have to modify the backend. You can just avoid setting `io.ConfigFlags |=...

You need to be able to create multiple windows and share the graphics context. Multiple monitor support is only a product of that. If sfml doesn’t naturally support that you...

I think imgui shouldn't be installed for variety of reason including some highlighted by @pinam45 above. There you have my answer.

Would be good to stop producing .so files :D

Dear ImGui is not ABI forward nor backward compatible. In addition it is a library that typically involve dozen of thousands of function calls every frame, building as DLL is...

> There's another good thing: if ImGui will have nothing to draw, resetGLStates won't be called on RenderTarget, while now it's called every time. You can make this change right...

Thanks. Why not using = ImVec2(…) consructs ? Before suggesting this in #5540 i forgot to consider how it may affect cimgui and other parsing based technology. We would need...

I’m pretty sure that form of initialization makes no difference to code generation, it ends up in the constructor just the same. It is only a parsing problem ihmo.

> > I’m pretty sure that form of initialization makes no difference to code generation, it ends up in the constructor just the same. It is only a parsing problem...