Searched refs:SDL_ToggleModState (Results 1 – 7 of 7) sorted by relevance
/AliOS-Things-master/components/SDL2/src/events/ |
A D | SDL_keyboard_c.h | 73 extern void SDL_ToggleModState(const SDL_Keymod modstate, const SDL_bool toggle);
|
A D | SDL_keyboard.c | 925 SDL_ToggleModState(const SDL_Keymod modstate, const SDL_bool toggle) in SDL_ToggleModState() function
|
/AliOS-Things-master/components/SDL2/src/video/windows/ |
A D | SDL_windowsevents.c | 507 SDL_ToggleModState(KMOD_CAPS, (GetKeyState(VK_CAPITAL) & 0x0001) != 0); in WIN_WindowProc() 508 SDL_ToggleModState(KMOD_NUM, (GetKeyState(VK_NUMLOCK) & 0x0001) != 0); in WIN_WindowProc()
|
A D | SDL_windowskeyboard.c | 107 SDL_ToggleModState(KMOD_CAPS, (GetKeyState(VK_CAPITAL) & 0x0001) != 0); in WIN_InitKeyboard() 108 SDL_ToggleModState(KMOD_NUM, (GetKeyState(VK_NUMLOCK) & 0x0001) != 0); in WIN_InitKeyboard()
|
/AliOS-Things-master/components/SDL2/src/video/x11/ |
A D | SDL_x11events.c | 373 SDL_ToggleModState(KMOD_CAPS, (mask & LockMask) != 0); in X11_ReconcileKeyboardState() 374 SDL_ToggleModState(KMOD_NUM, (mask & X11_GetNumLockModifierMask(_this)) != 0); in X11_ReconcileKeyboardState()
|
/AliOS-Things-master/components/SDL2/src/video/cocoa/ |
A D | SDL_cocoakeyboard.m | 477 SDL_ToggleModState(KMOD_CAPS, (data->modifierFlags & NSEventModifierFlagCapsLock) != 0);
|
A D | SDL_cocoawindow.m | 660 SDL_ToggleModState(KMOD_CAPS, newflags != 0);
|
Completed in 27 milliseconds