Home
last modified time | relevance | path

Searched refs:SDL_IC (Results 1 – 3 of 3) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/src/video/x11/
DSDL_x11video.c457 if (SDL_IC) { in create_aux_windows()
458 XUnsetICFocus(SDL_IC); in create_aux_windows()
459 XDestroyIC(SDL_IC); in create_aux_windows()
460 SDL_IC = NULL; in create_aux_windows()
531 if (SDL_IC != NULL) { in create_aux_windows()
533 XUnsetICFocus(SDL_IC); in create_aux_windows()
534 XDestroyIC(SDL_IC); in create_aux_windows()
542 SDL_IC = pXCreateIC(SDL_IM, in create_aux_windows()
550 if (SDL_IC == NULL) { in create_aux_windows()
563 char *ret = pXGetICValues(SDL_IC, XNFilterEvents, &mask, NULL); in create_aux_windows()
[all …]
DSDL_x11events.c472 if ( SDL_IC != NULL ) { in X11_DispatchEvent()
473 XSetICFocus(SDL_IC); in X11_DispatchEvent()
490 if ( SDL_IC != NULL ) { in X11_DispatchEvent()
491 XUnsetICFocus(SDL_IC); in X11_DispatchEvent()
579 if ( SDL_IC != NULL ) { in X11_DispatchEvent()
596 count = Xutf8LookupString(SDL_IC, &xevent.xkey, keydata, sizeof(keybuf), &xkeysym, &status); in X11_DispatchEvent()
606 count = Xutf8LookupString(SDL_IC, &xevent.xkey, keydata, count, &xkeysym, &status); in X11_DispatchEvent()
DSDL_x11video.h175 #define SDL_IC (this->hidden->X11_IC) macro