You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, SDL makes translate from native keycodes to SDL scancodes
After that, sdl scancodes are translated to sdl keycodes.
And finally in sdl application i must translate them to my keycodes.
Why i cannot ajust keycodes tables from application to prevent last translation? What purpose of internal SDL keymap?
The text was updated successfully, but these errors were encountered:
…arently handle more of the work.
1. Comment that SDL_SetThreadPriority will make any necessary system changes when applying priority.
2. Add a hint to override SDL's default behavior for scheduler policy.
3. Modify the pthreads SDL_SetThreadPriority so that instead of just using the current thread scheduler policy it will change it to a policy that should work best for the requested priority.
4. Add hint checks in SDL_SetThreadPriority so that spurious#3 can be overridden if desired.
5. Modify the Linux SDL_SetThreadPriority so that in the case that policy, either by SDL defaults or from the hint, is a realtime policy it uses the realtime rtkit API.
6. Prior to calling rtkit on Linux make the necessary thread state changes that rtkit requires. Currently this is done every time as it isn't expected that SDL_SetThreadPriority will be called repeatedly for a thread.
First, SDL makes translate from native keycodes to SDL scancodes
After that, sdl scancodes are translated to sdl keycodes.
And finally in sdl application i must translate them to my keycodes.
Why i cannot ajust keycodes tables from application to prevent last translation? What purpose of internal SDL keymap?
The text was updated successfully, but these errors were encountered: