I noticed that rendering may be broken on macOS Mojave. ImGui is being drawn at the wrong scale and mouse clicks don't align with what is drawn. I've also noticed clipping some problems.
To reproduce, start an empty project with TinderBox + the Cinder-ImGui block and add the hello-world example,
void cinderApp::setup() {
ImGui::initialize();
}
void cinderApp::draw() {
gl::clear( Color( 0, 0, 0 ) );
ImGui::Text("Hello, world!");
}
Tested using the latest Cinder 0.9.2dev, although the problem exists with previous versions. I get 
I also get the same just by rebuilding some of my previous projects, which is how i noticed this in the first place - the problem there is even more pronounced and makes ImGui essentially unusable. My hunch is that it's related to Mojave, although i've only returned to Cinder since upgrading so i can't be sure when this first occurred. Any thoughts?
I noticed that rendering may be broken on macOS Mojave. ImGui is being drawn at the wrong scale and mouse clicks don't align with what is drawn. I've also noticed clipping some problems.
To reproduce, start an empty project with TinderBox + the Cinder-ImGui block and add the hello-world example,
Tested using the latest Cinder 0.9.2dev, although the problem exists with previous versions. I get
I also get the same just by rebuilding some of my previous projects, which is how i noticed this in the first place - the problem there is even more pronounced and makes ImGui essentially unusable. My hunch is that it's related to Mojave, although i've only returned to Cinder since upgrading so i can't be sure when this first occurred. Any thoughts?