Geistyp

Results 6 comments of Geistyp

0.8.0 need to comment extern , but 0.7.4 need it...

setup() AddFont() comment io->Fonts->ClearTexData(); font texture still not allocate, maybe separate a method to create font texture ``` c++ bool ImGui_ImplGlfwGL3_CreateFontsTexture() ```

Yes, but ImGui combine key code to string and parse to utf8, we just use AddInputCharacter to add key code. https://github.com/arturoc/glfw/blob/feature-keysUnicode/src/win32_window.c#L320 ``` c++ case WM_SYSKEYDOWN: { const int scancode =...

@o2co2 what do you mean? Is that "输入中文" garbled? or your IME input garbled?

@o2co2 console output chinese? try **_setlocale(LC_ALL, "chs");_**

@DomAmato Why add 1000ms to condition.wait function in your branch ? This will cause pause to timeout. ``` c++ void ofxAudioDataWriterThread::threadedFunction(){ ... if (b_written > 0){ b_remaining -= b_written; b_offset...