Searched refs:min_h (Results 1 – 7 of 7) sorted by relevance
/AliOS-Things-master/components/SDL2/src/video/ |
A D | SDL_video.c | 2064 if (window->min_h && h < window->min_h) { in SDL_SetWindowSize() 2065 h = window->min_h; in SDL_SetWindowSize() 2127 SDL_SetWindowMinimumSize(SDL_Window * window, int min_w, int min_h) in SDL_SetWindowMinimumSize() argument 2134 if (min_h <= 0) { in SDL_SetWindowMinimumSize() 2140 (window->max_h && min_h >= window->max_h)) { in SDL_SetWindowMinimumSize() 2146 window->min_h = min_h; in SDL_SetWindowMinimumSize() 2153 … SDL_SetWindowSize(window, SDL_max(window->w, window->min_w), SDL_max(window->h, window->min_h)); in SDL_SetWindowMinimumSize() 2158 SDL_GetWindowMinimumSize(SDL_Window * window, int *min_w, int *min_h) in SDL_GetWindowMinimumSize() argument 2164 if (min_h) { in SDL_GetWindowMinimumSize() 2165 *min_h = window->min_h; in SDL_GetWindowMinimumSize() [all …]
|
A D | SDL_sysvideo.h | 82 int min_w, min_h; member
|
/AliOS-Things-master/components/SDL2/src/video/windows/ |
A D | SDL_windowsevents.c | 785 int min_w, min_h; in WIN_WindowProc() local 805 SDL_GetWindowMinimumSize(data->window, &min_w, &min_h); in WIN_WindowProc() 811 min_h -= h; in WIN_WindowProc() 842 info->ptMinTrackSize.y = h + min_h; in WIN_WindowProc()
|
/AliOS-Things-master/components/SDL2/src/video/wayland/ |
A D | SDL_waylandwindow.c | 81 height = SDL_max(height, window->min_h); in handle_configure_wl_shell_surface() 188 height = SDL_max(height, window->min_h); in handle_configure_zxdg_toplevel() 298 height = SDL_max(height, window->min_h); in handle_configure_xdg_toplevel()
|
/AliOS-Things-master/components/SDL2/include/ |
A D | SDL_video.h | 706 int min_w, int min_h);
|
/AliOS-Things-master/components/SDL2/src/video/x11/ |
A D | SDL_x11window.c | 862 sizehints->min_height = window->min_h; in X11_SetWindowMinimumSize() 1088 sizehints->min_height = window->min_h; in X11_SetWindowResizable()
|
/AliOS-Things-master/components/SDL2/src/video/cocoa/ |
A D | SDL_cocoawindow.m | 1687 minSize.height = window->min_h;
|
Completed in 23 milliseconds