-
Notifications
You must be signed in to change notification settings - Fork 2
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
[report] compiled all the examples on Windows10 / Visual Studio 2017 #2
Comments
Hey, thanks for testing. :) In example-advanced, fx.cpp file is a highly compressed (<1kb) source code, but there's too much errors for the compression to be the source of the problem. example-dockingandviewports : Indeed, I'm having the same issue now on osx too. If at least 1 window is docked, it works, otherwise, not... No idea what the issue is. Edit2: About Related to #1 |
…ffseted background with highlighted bitmap strings (mentioned in #2)
…parent docking space renders a background... Should fix example-dockingandviewports in #2 Also improves stability of the example.
example-advanced: fixed with the new commit. working.
I'll report as soon as I check more than one instance at the same time. |
Yay, thanks ! Does example-multiwindows still crash sometimes ? I'm also hesitating to change the autoDraw parameter to always draw after |
Not much, it's working fine now. (Not sure why crashed yesterday).
It works very well. void drawWindow(const char* _title, int _x=300, int _y=300, ImGuiWindowFlags _flags=ImGuiWindowFlags_None ){
ImGui::SetNextWindowSize(ImVec2(200,200), ImGuiCond_FirstUseEver);
ImGui::SetNextWindowPos(ImVec2(_x+ofGetWindowPositionX(),_y+ofGetWindowPositionY()), ImGuiCond_FirstUseEver);
I agree, should be always in front... |
hey @Daandelange,
awesome work! thanks.
I just tested/compiled ALL the amazing bundled examples on Windows10 / Visual Studio 2017.
I used the Project Generator like usual, x64 and release.
I report here the problems I have seen on the examples with errors or unexpected behavior:
The non mentioned examples are working fine.
(I do not try to solve anything yet, or reading/understanding all the ofApp comments, just compiled for now.)
Main bug in all examples:
The layout is not reloaded when reopening the app. It seems that it's stored fine on imgui.ini file on exit the app.
example-advanced
do not compiles. Errors:
example-dockingandviewports
it works.
BUT: dock zone overlays sometimes disappear.
dragging out of the app window works fine.
example-multiwindow
Bug verified when the two windows differ size. Working better when sizes similar as expected.
10% of the time crashes when closing one window. It seems no matter which window is closed first...
The text was updated successfully, but these errors were encountered: