Doug Binks
Doug Binks
So if a developer says: *Press `SHIFT` +`=`* what happens on Swiss keyboard? Also, what happens if you want `CTRL`+`0` as `0` is `SHIFT`+`=` on Swiss keyboards I think? With...
That article is about exactly the issue I've been discussing in this thread. In my view `GetKeyStateForCharacter()` helps developers as they can choose how to handle some of these issue...
I forgot to add that this doesn't mean we don't need the translated key callback you are working on, though I think it would need to be a new callback...
I think IMEs and deadkey modifiers are for character input via `glfwSetCharCallback`. The principal behind `GetKeyStateForCharacter()` is that the developer can find out that on a German keyboard the `@`...
I have started work on this based on PR #1909 as per https://github.com/glfw/glfw/pull/1909#issuecomment-1930576696
I'll have a think about this, but the following is how I would manage it with the current scheduler: 1. Add an atomic int flag to the task data to...
If you can keep track of any work done you can also only process what's needed in the new task, but it might be simpler just to discard it depending...
I can think of a way to do this in enkiTS, with a little extra work. Elevating a tasks priority would be fairly expensive, but it could be done. The...
Many thanks. Q: Does install only work on Linux and Mac OS X then? I think the documentation note should go in a subsection of building under a `CMake Installs`...
Thanks! I'll merge and then adjust.