Sebastian Sobótka

Results 13 comments of Sebastian Sobótka

Hi, you are fast :) ![imgui_03](https://user-images.githubusercontent.com/7688669/35040408-3bd90f84-fb81-11e7-8b2e-e2feea4d21b5.png) I provide a full virtual keyboard. That was only a short test before. My idea is to set keyboard focus using red active areas...

It seems to work !!! Thank you ;) I noticed when I switch to filled InputText, the cursor is set to the position where I clicked. I should provide the...

I don't need my active areas to set keyboard focus. Now I am using ImGui method to set it. ``` ImGui::InputText("##text", buf, bufSize); if (ImGui::IsItemClicked()) { keyboardFocus = 0; }...

I will try to explain it again. The hardware keyboard is based on ```onKeyPressed``` and ```onKeyReleased``` events in openframeworks. When the key is pressed then ```io.KeysDown[key] = true;``` and when...

Solution from here: https://github.com/HalfdanJ/ofxFaceTracker2/blob/master/libs/dlib/include/dlib/windows_magic.h Add these lines to windows_magic.h file: ``` #ifdef WIN32 #ifndef CreateSemaphore #ifdef UNICODE #define CreateSemaphore CreateSemaphoreW #endif #endif // This file contains all the magical #defines...

Hi @SuperMoran. I am using VS2015 and I've got the same error. Here is more info about this problem: http://stackoverflow.com/questions/23179136/visual-studio-command-line-error-d8016-ox-and-rtc-command-line-options-a 1. Switching to release mode helps. It goes farther. or...

Be sure that you have that file in folder /libs/dlib/lib/win/Release Check the Configuration and Platform options marked by red rectangle out, there are 4 possibilities: debug win32 release win32 debug...

Please, read again above carefully. You need to have compiled library (dlib) to static file (in your case in 64bit mode) and add it as described above. Chosen platform is...

Hi @teganscott, Please check my file: https://github.com/sebasobotka/ofxFaceTracker2/blob/master/libs/dlib/include/dlib/windows_magic.h These lines are important: ``` #ifdef WIN32 #ifndef CreateSemaphore #ifdef UNICODE #define CreateSemaphore CreateSemaphoreW #endif #endif ```

I am on Windows. And I forked your Repo while ago and didn't sync it. So that's the reason why I've got dlib version 18.18 locally. But I've got some...