You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this happens also with ofGetMouseX() so i suppose that this is the reason that easyCam is not working. At the moment i have no idea how to fix it . @arturoc@bakercp Maybe something is missed in ofAppEGLWindow.cpp?
The text was updated successfully, but these errors were encountered:
your log statement should be this: ofLog(OF_LOG_ERROR, "button :" + ofToString(mouseX) );
(this may be too much information, but:) otherwise the compiler thinks you print the string starting at (the memory location of "button" + mouseX bytes) which is some trash.. the trash is what is getting printed.
tested the easyCamExample to find the reason of this issue #86 .
I did simply this test:
and got :
this happens also with ofGetMouseX() so i suppose that this is the reason that easyCam is not working. At the moment i have no idea how to fix it . @arturoc @bakercp Maybe something is missed in ofAppEGLWindow.cpp?
The text was updated successfully, but these errors were encountered: