mirror of
https://github.com/glfw/glfw.git
synced 2025-12-21 06:31:58 +00:00
Compare commits
3 Commits
62cec52b88
...
61b4225230
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
61b4225230 | ||
|
|
0d2d85d19c | ||
|
|
6b5ea498f6 |
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
@ -98,3 +98,8 @@ jobs:
|
||||
- name: Build Win32 shared x64 library
|
||||
run: cmake --build build-win32-shared-x64 --parallel
|
||||
|
||||
- name: Configure Win32 shared arm64 library
|
||||
run: cmake -B build-win32-shared-arm64 -G "Visual Studio 17 2022" -A arm64 -D BUILD_SHARED_LIBS=ON
|
||||
- name: Build Win32 shared arm64 library
|
||||
run: cmake --build build-win32-shared-arm64 --parallel
|
||||
|
||||
|
||||
@ -1778,24 +1778,6 @@ static void keyboardHandleLeave(void* userData,
|
||||
if (!window)
|
||||
return;
|
||||
|
||||
// Handle any key repeats up to this point. We don't poll as this should be infrequent.
|
||||
uint64_t repeats;
|
||||
if (read(_glfw.wl.keyRepeatTimerfd, &repeats, sizeof(repeats)) == 8)
|
||||
{
|
||||
if(_glfw.wl.keyboardFocus)
|
||||
{
|
||||
for (uint64_t i = 0; i < repeats; i++)
|
||||
{
|
||||
_glfwInputKey(_glfw.wl.keyboardFocus,
|
||||
translateKey(_glfw.wl.keyRepeatScancode),
|
||||
_glfw.wl.keyRepeatScancode,
|
||||
GLFW_PRESS,
|
||||
_glfw.wl.xkb.modifiers);
|
||||
inputText(_glfw.wl.keyboardFocus, _glfw.wl.keyRepeatScancode);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
struct itimerspec timer = {0};
|
||||
timerfd_settime(_glfw.wl.keyRepeatTimerfd, 0, &timer, NULL);
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user