Alzathar
Alzathar
To answer to [Ylannl's comment](https://github.com/ocornut/imgui/issues/2109#issuecomment-426049833) in the correct thread. I've just tested the GLFW + OpenGL3 example (branch docking, commit 2cff3f6) on macOS 10.12 and I have not the problem...
I can reproduce the same behaviour under macOS 10.12 (branch docking, example_glfw_opengl3).
[Qt3D-Studio 2.0 beta](http://blog.qt.io/blog/2018/05/16/qt-3d-studio-2-0-beta-available/) seems to use ImGui for the debugging and profiling. **Update**: Yes it is, since this [commit](http://code.qt.io/cgit/qt3dstudio/qt3d-runtime.git/commit/src/runtime?id=0abf68125b41e48fa21e8c2f52c72c0eac998584). 
@ImOnALampshade What about the possibility to use [CEF|(https://bitbucket.org/chromiumembedded/cef)? There is a recent example using CEF and Ogre3D [here](https://github.com/kenkit/cef_osr). There was also an attempt using ImGui as reported in the issue...
@gdeverlant Youtube might help you to answer your question: - https://www.youtube.com/watch?v=MVvHmxHpf-Y - https://www.youtube.com/watch?v=wVZmdM_APis - https://www.youtube.com/watch?v=wR6s2S0GmmQ
Thanks for the answer. I am not an expert with the `__attribute__` keyword and I never used the `init_priority` attribute prior this issue. However, from my tests under macOS 10.15.4...
I understand your points. On the other hand, if TracyClent is compiled in the executable to profile without any shared library. this should not never break, does it? I understand...
Using the proposed modification of the function `init_order` and the code in this [gist](https://gist.github.com/Alzathar/60b970b84d4f66b75abdb715e7f5ae03), I created three examples under macOS using the latest commit published in the `master` branch (7cf3b0b0044bc32517b0b402f2f97613b8f526af):...
@intrigus I've sent an email to the original author to answer to your questions.
@tombsar `performKeyEquivalent:` is proposed by Apple in its [AppKit API](https://developer.apple.com/documentation/appkit/nsresponder/1524690-performkeyequivalent?language=objc). This is a way to [handle keyboard shortcut](https://developer.apple.com/documentation/appkit/nsview/1483664-performkeyequivalent?language=objc). You can replace `QNSView` by `NSView` (available in [AppKit API](https://developer.apple.com/documentation/appkit/nsview?language=objc)) as the...