theoractice
theoractice
FYI: [Tobii Dynavox partners with Tencent’s Sogou to empower people with disabilities in China](https://investors.tobiidynavox.com/blogs/press-releases/tobii-dynavox-partners-with-tencent-s-sogou-to-empower-people-with-disabilities-in-china) A Simplified Chinese keyboard example: https://www.bilibili.com/video/BV1Qq4y1k7Xi
Is this PR ready?
Hey everyone, I'm having the same problem, but I am also using `cmder` for terminal, and the `clink` package that comes with it has just given me some clue. When...
> > I am still having this issue. How can this be resolved? > > We still don't understand what the issue is or how to reproduce it in order...
My binary if needed (it's statically linked): [Simd.zip](https://github.com/user-attachments/files/16480761/Simd.zip)
Thank you for your kind reply. Actually this binary also works fine on my Win10 x64 system with a modern x64 CPU. It can only fail on a x86 system....
Tested with `Release/Win32` mode. After upgrading code to the latest commit, the problem still exists. The callstack: ``` > Test.exe!Simd::Base::Detect(const Simd::Detection::HidLbpCascade & hid, unsigned int offset, int startStage) line 335...
To my surprise, Test.exe throws the same `Illegal Instruction` error for `Debug/Win32` mode here:  This seems quite impossible, maybe the bug is specific to this Atom CPU. If you...
Second this. `GetCaretPoints` can also be used to get the caret position. In WPF I am using `var caretLocation = textBox.GetRectFromCharacterIndex(textBox.CaretIndex).Location;` so maybe implementing `GetRectFromCharacterIndex` is another way to go.
There are some rounding errors when compared to text highlights if the results from `GetCursorRectangle` is used directly to draw a custom cursor. They occurs on the top/bottom sides. ...