Lines Matching refs:sdlwindow
233 SDL_SendMouseMotion(window->sdlwindow, 0, 0, sx, sy); in pointer_handle_motion()
260 SDL_SetMouseFocus(window->sdlwindow); in pointer_handle_enter()
284 SDL_Window *window = window_data->sdlwindow; in ProcessHitTest()
370 SDL_SendMouseButton(window->sdlwindow, 0, in pointer_handle_button_common()
406 SDL_SendMouseWheel(window->sdlwindow, 0, x, y, SDL_MOUSEWHEEL_NORMAL); in pointer_handle_axis_common_v1()
471 SDL_SendMouseWheel(window->sdlwindow, 0, x, y, SDL_MOUSEWHEEL_NORMAL); in pointer_handle_frame()
518 const float x = dblx / window_data->sdlwindow->w; in touch_handler_down()
519 const float y = dbly / window_data->sdlwindow->h; in touch_handler_down()
523 SDL_SendTouch(1, (SDL_FingerID)id, window_data->sdlwindow, SDL_TRUE, x, y, 1.0f); in touch_handler_down()
538 window = window_data->sdlwindow; in touch_handler_up()
551 const float x = dblx / window_data->sdlwindow->w; in touch_handler_motion()
552 const float y = dbly / window_data->sdlwindow->h; in touch_handler_motion()
555 SDL_SendTouchMotion(1, (SDL_FingerID)id, window_data->sdlwindow, x, y, 1.0f); in touch_handler_motion()
642 SDL_SetKeyboardFocus(window->sdlwindow); in keyboard_handle_enter()
1165 SDL_SendMouseMotion(window->sdlwindow, 0, 1, (int)dx, (int)dy); in relative_pointer_handle_relative_motion()