Home | History | Annotate | Download | only in wincommon

Lines Matching refs:SDL_bounds

76 RECT SDL_bounds = {0, 0, 0, 0};
581 GetClientRect(SDL_Window, &SDL_bounds);
584 pt.x = SDL_bounds.left;
585 pt.y = SDL_bounds.top;
587 SDL_bounds.left = pt.x;
588 SDL_bounds.top = pt.y;
590 pt.x = SDL_bounds.right;
591 pt.y = SDL_bounds.bottom;
593 SDL_bounds.right = pt.x;
594 SDL_bounds.bottom = pt.y;
599 SDL_windowX = SDL_bounds.left;
600 SDL_windowY = SDL_bounds.top;
602 w = SDL_bounds.right-SDL_bounds.left;
603 h = SDL_bounds.bottom-SDL_bounds.top;
605 ClipCursor(&SDL_bounds);